/* manrope-200 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200;
  src: url("fonts/manrope-v20-latin-200.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* manrope-300 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Manrope";
  font-style: normal;
  font-weight: 300;
  src: url("fonts/manrope-v20-latin-300.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* manrope-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/manrope-v20-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* manrope-500 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  src: url("fonts/manrope-v20-latin-500.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* manrope-600 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  src: url("fonts/manrope-v20-latin-600.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* manrope-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/manrope-v20-latin-700.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* manrope-800 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  src: url("fonts/manrope-v20-latin-800.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ibm-plex-sans-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/ibm-plex-sans-v23-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ibm-plex-sans-500 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 500;
  src: url("fonts/ibm-plex-sans-v23-latin-500.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ibm-plex-sans-600 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 600;
  src: url("fonts/ibm-plex-sans-v23-latin-600.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ibm-plex-sans-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/ibm-plex-sans-v23-latin-700.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
  --font-headings: "Manrope";
  --font-body: "IBM Plex Sans";
  --color-bg: #f7faf0;
  --color-card: #eef3e4;
  --color-bg-dark: #15211e;
  --color-card-dark: #192821;
  --color-border-dark: #2D4129;
  --color-text: #4c5f4c;
  --color-text-muted: #6d745e;
  --color-primary: var(--primary);
  --opacity-body-text: 0.8;
  --section-rounded-radius: 0rem;
  --section-padding-y: 4rem;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: var(--font-body);
  color: var(--color-text);
}

.wa-child {
  background-color: var(--color-bg-dark);
}

.section-container {
  padding-left: min(5rem, 4%);
  padding-right: min(5rem, 4%);
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}

.section-container--light {
  background: var(--color-bg);
}

.section-container--rounded {
  border-radius: var(--section-rounded-radius);
}

.section-container--into-top {
  margin-top: calc(var(--section-rounded-radius) * -1);
  position: relative;
}

.section-container:has(+ .section-container--into-top) {
  padding-bottom: calc(var(--section-rounded-radius) + var(--section-padding-y));
}

.section-container__inner--fullwide {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}

.section-container__inner {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

.section-container--green-flare-center {
  background: radial-gradient(at center, color-mix(in oklab, var(--color-primary), transparent 90%), transparent 70%);
}

.section-container--green-flare-bottom {
  background: radial-gradient(at bottom, color-mix(in oklab, var(--color-primary), transparent 90%), transparent 70%);
}

.section-container--dotted {
  position: relative;
  overflow-x: clip;
}

.section-container--dotted::after {
  content: "";
  position: absolute;
  pointer-events: none;
  top: 50%;
  left: 0%;
  height: 130%;
  width: 100%;
  background-image: url('../../assets/img/dots.svg');
  background-position: center center;
  transform: translateY(-50%);
  background-repeat: repeat;
  background-size: 1rem;
  filter: sepia(1) hue-rotate(80deg) opacity(.3);
  mask-image: linear-gradient(to top, transparent, black, transparent);
  z-index: -1;
}

.home-hero {
  position: relative;
  max-height: 100vh;
  /* background-image: url("../../assets/img/hero-bg.jpg"); */
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--color-bg);
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-top: 32rem;
  padding-bottom: 4rem;
}

.home-hero h1 {
  color: var(--color-bg);
  opacity: var(--opacity-body-text);
  font-weight: 400;
  font-size: 1.5rem;
  max-width: 600px;
  margin: 0;
  hyphens: none;
}

.home-hero h1>strong {
  font-weight: 500;
}

.home-hero__video-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.home-hero__video-wrapper>video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: .2;
}

.home-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Default (Mobile First approach): Scale it down for phones */
.home-hero__big-claim,
.home-hero__big-claim>strong {
  font-family: var(--font-headings);
  font-size: 3.5rem;
  /* Smaller for mobile */
  line-height: 1;
  font-weight: 500;
}

.home-hero__big-claim>strong {
  color: var(--color-primary);
}

.home-hero__social-proof-wrapper {
  display: flex;
  gap: 3rem;
}

.home-hero__social-proof-wrapper__item {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--color-bg);
  opacity: var(--opacity-body-text);
  font-weight: 500;
  line-height: 1.1;
  font-size: 0.75rem;
}

.home-hero__social-proof-wrapper svg {
  width: 1.5rem;
}

.home-hero__scrollForMore {
  position: absolute;
  bottom: 0;
  right: 0;
  writing-mode: sideways-lr;
  text-orientation: mixed;
  align-items: center;
  gap: 0.5rem;
  display: none;
  font-weight: 500;
}

.home-hero__flare {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background: radial-gradient(at center bottom, var(--color-primary), transparent 70%);
  height: 100%;
  width: 150%;
  opacity: 0.1;
}

.home-hero__flare-wrapper {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.heading-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.heading-container.heading-container--centered {
  text-align: center;
}

.heading-container.heading-container--big {
  gap: 0.75rem;
}

.eyebrow-heading {
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 1px;
  margin: 0;
}

.eyebrow-heading--big {
  font-size: 1rem;
}

.heading {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: -2px;
  margin: 0;
  line-height: 110%;
  text-wrap: pretty;
}

.heading--big {
  font-size: 3rem;
}

.heading.heading--light {
  color: var(--color-bg);
}

.heading-paragraph.heading-paragraph--light {
  color: var(--color-bg);
  opacity: var(--opacity-body-text);
}

.heading-paragraph.heading-paragraph--wide {
  max-width: 96ch;
}

.heading>strong {
  font-weight: 600;
}

.heading-paragraph {
  font-weight: 400;
  color: var(--color-text-muted);
  font-size: 1.25rem;
  max-width: 72ch;
  line-height: 125%;
}

.body-text {
  font-weight: 400;
  color: var(--color-text-muted);
}

.body-text--big {
  font-size: 1.25rem;
}

span.keep-together {
  display: inline-block;
}

.feature-badge-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  padding: 1rem 0;
}

.feature-badge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-card);
  color: var(--color-text-muted);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  font-size: 1.25rem;
  line-height: 120%;
  font-weight: 500;
}

.feature-badge>svg {
  color: var(--color-primary);
}

.shiny-badge {
  border: 1px solid #f1fcd8;
  background: radial-gradient(circle at 20% 50%, #edfcce, #dbf0ac);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 14px;
  font-weight: 500;
}

.shiny-badge--huge {
  font-size: 1.5rem;
  padding: 0.25rem 1rem;
}

.video-player-wrapper--green-shadow {
  filter: drop-shadow(0px 0px 100px color-mix(in oklab, var(--color-primary), transparent 90%)) drop-shadow(0px 0px 3px color-mix(in oklab, var(--color-bg-dark), transparent 70%));
}

.tutorial-steps-wrapper {
  display: grid;
  gap: 3rem 1rem;
  grid-template-columns: repeat(1, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.tutorial-step {
  background-color: var(--color-card);
  padding: 2rem 1rem 1rem 1rem;
  border-radius: 24px;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.tutorial-step h3 {
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
}

.tutorial-step__description {
  line-height: 120%;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.tutorial-step__badge {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  border: 1px solid #f1fcd8;
  background: radial-gradient(circle at 20% 50%, #edfcce, #dbf0ac);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 1.25rem;
  padding: 0.35rem 0.6rem;
}

.tutorial-step__image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  margin-top: auto;
}

.tutorial-step__image-wrapper>img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.cta-banner {
  padding: 1rem;
  padding-left: 1.5rem;
  background: var(--color-card);
  color: var(--color-text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
  font-size: 1.75rem;
  border-radius: 24px;
  font-weight: 500;
}

.cta-banner--ghost {
  background-color: transparent;
  color: var(--color-bg);
}

.cta-banner--slim {
  justify-content: center;
  gap: 1rem 2rem;
}

.eesy-button {
  border: 1px solid #96d701;
  background: radial-gradient(circle at 20% 50%, #edfcce, #dbf0ac);
  color: var(--color-primary);
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.65rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.25s;
  gap: 0.5rem;
  width: 100%;
}

.eesy-button.eesy-button--dark {
  border: 1px solid color-mix(in oklab, var(--color-primary), transparent 94%);
  background: radial-gradient(circle at 20% 50%, color-mix(in oklab, var(--color-primary), transparent 90%), color-mix(in oklab, var(--color-primary), transparent 98%));
  color: var(--color-primary);
}

.eesy-button.eesy-button--dark:hover {
  color: color-mix(in oklab, var(--color-primary), white 20%);
  border: 1px solid color-mix(in oklab, var(--color-primary), transparent 70%);
  box-shadow: 0px 0px 8px color-mix(in oklab, var(--color-primary), transparent 70%);
}

.eesy-button:hover {
  box-shadow: 0px 0px 8px color-mix(in oklab, var(--color-primary), transparent 50%);
  color: color-mix(in oklab, var(--color-primary), black 30%);
}

.eesy-button svg {
  --button-svg-size: 1.5rem;
  width: var(--button-svg-size);
  height: var(--button-svg-size);
}

.eesy-button--big {
  padding: 0.75rem 1.25rem;
  font-size: 1.5rem;
  border-radius: 14px;
}

.eesy-button--big svg {
  --button-svg-size: 2rem;
  width: var(--button-svg-size);
  height: var(--button-svg-size);
}

.text-image-box {
  text-align: center;
  align-items: center;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
  gap: 2rem;
}

.text-image-box p {
  margin-bottom: 0.5rem;
  text-wrap: pretty;
}

.text-image-box .heading-container {
  margin-bottom: 1rem;
}

.text-image-box.text-image-box--light p,
.text-image-box.text-image-box--light h1,
.text-image-box.text-image-box--light h2,
.text-image-box.text-image-box--light h3 {
  color: var(--color-bg);
}

.text-image-box.text-image-box--light p {
  opacity: var(--opacity-body-text);
}

.text-image-box__text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.text-image-box__image-wrapper {
  border-radius: 24px;
  overflow: hidden;
}

.text-image-box__image-wrapper .text-image-box__image {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.text-image-box:has(+ .text-image-box) {
  margin-bottom: 8rem;
}

.testimonial-card {
  position: relative;
}

.testimonial-card .testimonial-card__bg {
  width: 100%;
}

.testimonial-card .testimonial-card__text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 1rem 1.5rem;
}

.testimonial-card .testimonial-card__text__quote svg {
  fill: var(--color-primary);
  width: 3rem;
  height: 3rem;
}

.testimonial-card .testimonial-card__text .testimonial-card__text__testimonial {
  font-size: 1rem;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 0.5rem 1rem 0.5rem 0;
}

.testimonial-card .testimonial-card__text .testimonial-card__text__signature-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 2.5rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  opacity: 0.85;
}

.splide__arrow {
  border-radius: 100px !important;
  height: fit-content !important;
  aspect-ratio: 1/1;
  width: 3.5rem;
  background-color: rgba(0, 0, 0, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(4px);
}

.splide__arrow svg {
  fill: var(--color-primary) !important;
  width: 1.5rem !important;
  height: 1.5rem !important;
}

.splide__arrow:hover:hover:not(:disabled) svg {
  fill: var(--color-primary) !important;
}

.splide__arrow:hover {
  background-color: rgba(0, 0, 0, 0.4) !important;
}

.splide__arrow--prev {
  left: 1rem;
}

.splide__arrow--next {
  right: 1rem;
}

#product-splide img {
  border-radius: 30px;
  height: 100%;
  object-fit: cover;
  max-width: 80vw;
}

#product-splide {
  border-radius: 4rem;
  background: var(--color-card-dark);
  padding: 6rem 0;
}

#product-splide .splide__pagination {
  bottom: 2rem;
  background: radial-gradient(circle at 20% 50%, color-mix(in oklab, var(--color-primary), transparent 90%), color-mix(in oklab, var(--color-primary), transparent 98%));
  width: fit-content;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.5rem 0.5rem 0.5rem;
  border-radius: 100px;
}

#product-splide .splide__pagination .splide__pagination__page {
  background: color-mix(in oklab, var(--color-primary), transparent 70%) !important;
}

#product-splide .splide__pagination .splide__pagination__page.is-active {
  background: color-mix(in oklab, var(--color-primary), transparent 0%) !important;
}

#lp-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#lp-accordion>* {
  padding: 1.5rem;
  background-color: var(--color-card);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
}

#lp-accordion button::after {
  color: var(--color-primary);
  scale: 1.125;
}

#lp-accordion button {
  border: none;
  background: none;
  width: 100%;
  font-size: 1.25rem;
  text-align: left;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 0;
  display: flex;
  gap: 1rem;
}

#lp-accordion button[aria-expanded="false"] {
  font-weight: 400;
}

#lp-accordion h3 {
  margin: 0;
}

#lp-accordion p {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin: 0;
  margin-top: 2rem;
  max-width: 84ch;
  text-wrap: balance;
}

#footer {
  background: radial-gradient(ellipse at center bottom, color-mix(in oklab, var(--color-primary), var(--color-bg-dark) 90%), var(--color-bg-dark));
  color: var(--color-bg);
  position: relative;
  overflow: hidden;
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
  padding-left: min(5rem, 4%);
  padding-right: min(5rem, 4%);
}

#footer::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../assets/img/logo/eesy-logo-white-mini.svg");
  background-repeat: no-repeat;
  background-size: auto 80%;
  background-position: center center;
  opacity: 0.05;
  pointer-events: none;
}

#footer>div {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.footer__big-claim,
.footer__big-claim>strong {
  font-family: var(--font-headings);
  font-size: 3rem;
  /* Smaller for mobile */
  line-height: 1;
  font-weight: 500;
}

.footer__big-claim>strong {
  color: var(--color-primary);
}

.footer__long-claim {
  color: var(--color-bg);
  opacity: var(--opacity-body-text);
  font-size: 1.25rem;
  max-width: 42ch;
  line-height: 120%;
  margin-top: 1rem;
}

.footer__long-claim>strong {
  font-weight: 500;
}

.footer__middle-section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem 6rem;
}

.footer__nav {
  display: flex;
  gap: 3rem 6rem;
  width: max-content;
  flex-wrap: wrap;
}

.footer__nav__col__header {
  color: var(--color-bg);
  font-size: 1.25rem;
  font-weight: 500;
  opacity: var(--opacity-body-text);
}

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

#footer li {
  margin: 0;
  padding: 0;
}

#footer .footer__nav__col li a {
  color: var(--color-bg);
  font-size: 0.875rem;
  font-weight: 400;
  opacity: var(--opacity-body-text);
}

.footer__legal-wrapper {
  display: flex;
  justify-content: space-between;
  color: var(--color-bg);
  opacity: 0.6;
  font-size: 0.75rem;
  flex-wrap: wrap;
  gap: 2rem 4rem;
}

#footer .footer__legal-wrapper nav>ul>li>a {
  color: var(--color-bg);
}

.footer__legal-wrapper nav>ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

#eesy-header {
  transition: all 0.25s;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 5;
  width: 100%;
  background: none;
  color: var(--color-bg);
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: 1px solid;
  border-bottom-color: transparent;
}

#eesy-header>* {
  transition: padding 0.25s;
  display: flex;
  gap: 4rem;
  padding: 2rem 0;
}

#eesy-header .header__logo-wrapper,
#eesy-header .header__right-menu {
  flex-grow: 1;
  flex-basis: 0;
  align-items: center;
}

#eesy-header .header__right-menu {
  display: flex;
  justify-content: end;
  gap: 2rem;
}

#eesy-header .header__nav {
  display: none;
  align-items: center;
}

#eesy-header .header__nav ul {
  display: flex;
  gap: 1rem 2rem;
  font-size: 0.875rem;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

#eesy-header .header__nav ul li a:hover {
  color: var(--color-primary);
}

#eesy-header.get-sticky {
  background-color: color-mix(in oklab, var(--color-bg-dark), transparent 15%);
  backdrop-filter: blur(10px);
  border-bottom-color: color-mix(in oklab, var(--color-bg), transparent 93%);
}

#eesy-header.get-sticky>* {
  padding: 1rem 0;
}

#eesy-header .header__logo-wrapper img {
  height: 3.5rem;
  transition: height 0.25s;
}

#eesy-header.get-sticky .header__logo-wrapper img {
  height: 3rem;
}

#eesy-header>* {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

#eesy-header .header__mobile-burger-wrapper {
  display: flex;
  align-items: center;
}

#eesy-header .header__mobile-burger-wrapper button {
  background: none;
  border: none;
  color: white;
}

#eesy-header .eesy-button {
  display: none;
}

#mobile-slideout-menu {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: color-mix(in oklab, var(--color-bg-dark), transparent 2%);
  opacity: 0;
  pointer-events: none;
  padding: 3rem 1rem 2rem 1rem;
  transition: opacity 0.35s;
}

#mobile-slideout-menu button {
  background: none;
  border: none;
  color: var(--color-primary);
}

#mobile-slideout-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: right;
}

#mobile-slideout-menu .mobile-slideout__nav {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  color: var(--color-bg);
  font-size: 1.5rem;
}

#mobile-slideout-menu .mobile-slideout__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

#mobile-slideout-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

html:has(#mobile-slideout-menu.is-open) {
  overflow-y: hidden;
}

#eesy-header .header__logo-wrapper {
  justify-content: center;
  display: flex;
}

#subpage-heading-bg {
  background-image: url("../../assets/img/hero-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--color-bg);
  padding-top: 10rem;
  padding-bottom: calc(var(--section-rounded-radius) + 5rem);
}

#subpage-heading-bg h1 {
  font-family: var(--font-headings);
  font-size: 2rem;
  margin-bottom: .25rem;
  font-weight: 400;
}

#subpage-heading-bg .subpage-heading-bg__complementary-text {
  color: var(--color-bg) !important;
  opacity: var(--opacity-body-text);
  font-size: 1.5rem;
  display: block;
}

#subpage-heading-bg h1,
#subpage-heading-bg h2,
#subpage-heading-bg h3,
#subpage-heading-bg h4,
#subpage-heading-bg h5,
#subpage-heading-bg h6 {
  color: var(--color-bg);
}

#main-wrapper:not(:has(.niu-checkout-header)):not(:has(.basket)) {
  padding-top: calc(var(--section-padding-y) / 2);
  padding-bottom: var(--section-padding-y);
  margin-top: calc(var(--section-rounded-radius) * -1);
  position: relative;
  border-radius: var(--section-rounded-radius);
  background-color: var(--color-bg) !important;
}

body[data-page="18"] main#main-wrapper {
  padding-top: 0 !important;
}

#main-wrapper:has(.basket) {
  padding-top: var(--section-padding-y);
}

body {
  background: var(--color-bg-dark) !important;
}

.insolitum-banner {
  border-radius: 24px;
  background: var(--color-card);
  padding: 2rem 3rem;
  color: var(--color-text-muted);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 1rem;
}

.insolitum-banner__logo {
  width: 200px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  margin: auto;
}

.insolitum-banner__logo svg {
  width: 100%;
  height: 100%;
}

.insolitum-banner__long-text {
  font-size: 1.25rem;
  margin: auto;
  text-align: center;
}

.insolitum-banner__logo-text>strong {
  font-weight: 500;
}

.insolitum-banner__claim {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: auto;
  text-align: center;
  font-weight: 500;
}

.insolitum-banner__claim svg {
  width: 1.25rem;
}

.product-headline h1 {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 600;
}

.eesy-quickinfos {
  background-color: var(--color-card);
  padding: 2rem;
  padding-top: 2.5rem;
  border-radius: 24px;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
}

.eesy-quickinfos>ul {
  list-style: none;
  display: block;
  justify-content: center;
  align-items: stretch;
  margin: 0;
  padding: 0;
}

.eesy-quickinfos>ul>li {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.eesy-quickinfos>ul>li:last-child {
  border-right: none;
  border-bottom: none;
}

.eesy-quickinfos .eesy-quickinfo {
  display: flex;
  flex-direction: column;
  padding: 2rem 0;
  text-align: center;
  min-width: max-content;
  font-size: 1.25rem;
  font-weight: 500;
  opacity: var(--opacity-body-text);
}

.eesy-quickinfo span.eesy-quickinfo__prepend {
  font-size: .875rem;
  opacity: .9;
  line-height: 100%;
}

.eesy-quickinfos .eesy-quickinfo__badge {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  border: 1px solid #f1fcd8;
  background: radial-gradient(circle at 20% 50%, #edfcce, #dbf0ac);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 10px;
  font-weight: 500;
  padding: 0.25rem 0.6rem;
}

.section-container__inner--border-bottom {
  padding-bottom: 4rem;
  border-bottom: 1px solid;
}

.section-container--dark .section-container__inner--border-bottom {
  border-bottom-color: var(--color-border-dark);
}

.section-container__inner--border-bottom+.section-container__inner {
  padding-top: 4rem;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 30vh !important;
}

address.contact-data {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-data__item {
  display: flex;
  gap: 1rem;
  font-size: 1.5rem;
  color: var(--color-text-muted);
  align-items: center;
  font-weight: 500;
}

.contact-data__item svg {
  color: var(--color-primary);
  width: 2rem;
  height: 2rem;
}

.contact-use-form {
  display: flex;
  justify-content: center;
  padding: 4rem 0 0;
  opacity: .75;
  gap: 1rem;
  font-weight: 500;
}

.eesy-big-item-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.eesy-big-item-card .eesy-big-item-card__image-wrapper {
  aspect-ratio: 5/4;
  border-radius: 24px;
  overflow: hidden;
}

.eesy-big-item-card .eesy-big-item-card__image-wrapper img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.eesy-big-item-card .eesy-big-item-card__header {
  font-family: var(--font-headings);
  font-size: 2rem;
}

.eesy-big-item-card .eesy-big-item-card__header a {
  color: var(--color-text);
}

.eesy-big-item-card .eesy-big-item-card__body .eesy-big-item-card__price {
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 500;
}

.eesy-big-item-card .eesy-big-item-card__body .eesy-big-item-card__delivery .delivery-status span {
  color: var(--color-primary);
}

.eesy-big-item-card .eesy-big-item-card__body .eesy-big-item-card__delivery .estimated_delivery {
  opacity: var(--opacity-body-text);
}

.document-box {
  background: var(--color-card-dark);
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  position: relative;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 2.5rem 2rem 2rem 2rem;
}

.document-box__badge {
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.35rem .8rem;
  display: flex;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  transition: all 0.25s;
  gap: 0.5rem;
  width: max-content;
  text-align: center;
  border: 1px solid color-mix(in oklab, var(--color-primary), transparent 94%);
  background: radial-gradient(circle at 20% 50%, color-mix(in oklab, var(--color-primary), transparent 90%), color-mix(in oklab, var(--color-primary), transparent 98%));
  color: var(--color-primary);
  position: absolute;
  transform: translateY(-50%) translateX(-50%);
  left: 50%;
  top: 0;
}

.document-box__item {
  background: color-mix(in oklab, var(--color-primary), transparent 96%);
  border-radius: 14px;
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  max-width: 32ch;
  line-height: 115%;
  color: var(--color-bg);
  flex: 1;
  transition: background .25s;
}

.document-box__item:hover {
  background: color-mix(in oklab, var(--color-primary), transparent 90%);
  color: var(--color-bg);
}

.document-box__item__icon {
  color: var(--color-primary);
}

p a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* .eesy-big-item-card .eesy-big-item-card__body .eesy-big-item-card__more-info-btn {   border } */
/* 1. Define the rotation animation */
@keyframes spinSlogan {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* 2. Apply it to the text group */
#rotating-slogan {
  /* 15s = time it takes for one full rotation. Adjust to your liking! */
  /* linear = keeps the speed consistent */
  /* infinite = loops forever */
  animation: spinSlogan 15s linear infinite;
  /* CRITICAL: These two lines force the group to spin around its own center point, not the top-left of the page */
  transform-origin: center;
  transform-box: fill-box;
}

.footnote {
  margin-top: 2rem;
  font-size: .875rem;
  display: block;
  opacity: .5;
}

[data-anime^="fade"]:not([data-anime*="stagger"]) {
  opacity: 0;
}

[data-anime*="stagger"]>* {
  opacity: 0;
}

#checkout {
  background-color: white;
}

#copyright .col:nth-child(2) {
  display: none;
}

#copyright {
  background: #EFEFEF;
  color: #525252;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

  .home-hero__big-claim,
  .home-hero__big-claim>strong {
    font-size: 3.5rem;
  }

  .footer__big-claim,
  .footer__big-claim>strong {
    font-size: 4rem;
  }

  .home-hero h1 {
    font-size: 1.75rem;
  }

  .home-hero__content {
    gap: 2.5rem;
  }

  .home-hero__social-proof-wrapper__item {
    font-size: 1.25rem;
  }

  .feature-badge {
    flex-direction: row;
  }

  .feature-badge-wrapper {
    display: flex;
    gap: 1rem;
  }

  .heading-container {
    gap: 0.5rem;
  }

  .heading-container.heading-container--big {
    gap: 1.5rem;
  }

  .eyebrow-heading--big {
    font-size: 1.25rem;
  }

  .heading--big {
    font-size: 4.5rem;
  }

  .shiny-badge--huge {
    font-size: 2rem;
    padding: 0.35rem 1.2rem;
  }

  .tutorial-steps-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }

  .eesy-button {
    width: fit-content;
  }

  :root {
    --section-rounded-radius: 6rem;
  }

  .text-image-box {
    text-align: left;
    gap: 6rem;
  }

  .text-image-box__text-wrapper .heading-container {
    align-items: start;
  }

  .text-image-box.text-image-box--text-right>.text-image-box__text-wrapper {
    order: 5;
  }

  #eesy-features {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .testimonial-card .testimonial-card__text .testimonial-card__text__testimonial {
    font-size: 1.75rem;
    padding: 1rem 2rem 1rem 0;
  }

  .testimonial-card .testimonial-card__text .testimonial-card__text__signature-wrapper {
    height: 7rem;
    font-size: 1.5rem;
  }

  .testimonial-card .testimonial-card__text {
    padding: 2rem 2.35rem;
  }

  .testimonial-card .testimonial-card__text__quote svg {
    width: 6rem;
    height: 6rem;
  }

  #lp-accordion button {
    font-size: 1.5rem;
  }

  #eesy-header>* {
    display: flex;
  }

  #eesy-header .header__nav {
    display: flex;
  }

  #eesy-header .eesy-button {
    display: initial;
  }

  #eesy-header .header__mobile-burger-wrapper {
    display: none;
  }

  #eesy-header .header__logo-wrapper {
    justify-content: start;
  }

  .insolitum-banner {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .insolitum-banner__long-text {
    order: -1;
    text-align: left;
    text-wrap: pretty;
  }

  .eesy-quickinfos>ul {
    display: flex;
  }

  .eesy-quickinfos>ul>li {
    border-right: 1px solid rgba(0, 0, 0, .1);
    border-bottom: none;
  }

  .eesy-quickinfos .eesy-quickinfo {
    padding: 0 3rem;
  }

  #subpage-heading-bg h1 {
    font-size: 4rem;
  }

  .home-hero__scrollForMore {
    display: flex;
  }

  :root {
    --section-rounded-radius: 3rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

  .home-hero__big-claim,
  .home-hero__big-claim>strong {
    font-size: 5rem;
    /* Back to your original large size */
  }

  .splide__arrow--prev {
    left: 10%;
  }

  .splide__arrow--next {
    right: 10%;
  }
}