/*FONTS*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/*MAIN*/
html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
* {
  box-sizing: border-box;
}
/*MENU*/
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.main-header.scrolled {
  background: rgba(240, 240, 255, 0.95);
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}

nav a.active {
  font-weight: bold;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  position: sticky;
  top: 10px;
}

.logo {
  position: absolute;
  left: -8px;
  top: 0px;
  height: 55px;
}

nav {
  display: flex;
  gap: 58px;
}

nav a {
  font-family: "Inter";
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  color: #000;
  font-size: 18px;
}

/*MAIN*/
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80vh;
  padding-left: 136px;
  padding-right: 0;
  padding-top: 80px;
  padding-bottom: 50px;
  overflow-x: visible;
  position: relative;
  overflow: visible;
}

.hero-text {
  max-width: 900px;
}

.hero-subtitle {
  font-family: "Inter";
  font-size: 14px;
  font-weight: 700;
  font-weight: bold;
  color: #3101a3;
  text-transform: uppercase;
}

.hero h1 {
  font-family: "Poppins";
  font-size: 60px;
  font-weight: 700;
  font-weight: bold;
  line-height: 1.2;
  margin: 16px 0;
}

.hero .bright {
  color: #9079fb;
}

.hero-desc {
  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  color: #333;
  margin-bottom: 38px;
  line-height: 1.5;
}

.hero-btn {
  font-family: "Inter";
  font-weight: 800;
  display: inline-block;
  background: #29d19d;
  color: #000;
  padding: 14px 26px;
  border-radius: 25px;
  border: 1px solid #000;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.hero-btn:hover {
  background: #00a868;
}

.hero-btn:active {
  transform: translateY(1px);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  overflow: visible;
}

.hero-image::before {
  content: "";
  position: absolute;
  right: -200px;
  top: 30%;
  transform: translateY(-50%);
  width: 1112px;
  height: 370%;
  background: radial-gradient(
    circle,
    rgba(191, 182, 255, 1) 0%,
    rgba(144, 121, 251, 0) 90%
  );
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
}

.hero-image::before {
  transform: translateZ(0) scale(1.05);
}
@supports (-webkit-touch-callout: none) {
  .hero-image::before {
    filter: blur(100px);
  }
}

.laptop {
  width: 760px;
  max-width: none;
  flex: 0 0 560px;
  z-index: 1;
}

/*PARTNERZY*/
:root {
  --partners-gap: 60px;
  --partners-speed: 26s;
}

.lm-blob {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  border-radius: 50px;
  filter: blur(40px);
  opacity: 0.7;
}

.lm-blob--main {
  background-color: #c3fbcc;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: none;
  border-radius: 0;
}

.lm-title {
  color: black;
  font-family: "Inter", sans-serif;
  margin: 0 0 30px;
  font-weight: 700;
  font-size: 34px;
  opacity: 0.85;
  text-align: center;
  position: relative;
  z-index: 5;
}

.logo-marquee {
  position: relative;
  overflow: visible;
  padding: 22px 0 36px;
}

.lm-blob,
.lm-logo {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.lm-logo {
  opacity: 0.1;
  bottom: 10px;
  right: 4%;
  width: 123px;
}

.lm-blob--big {
  bottom: -75px;
  right: 1%;
  transform: translateX(-35%);
  width: 316px;
  height: 201px;
  filter: blur(70px);
}

.lm-blob--small {
  bottom: -340px;
  right: -13%;
  width: 825px;
}

.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 0;
}

.marquee__track {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--partners-gap);
  min-width: 100%;

  list-style: none;
  animation: scroll var(--partners-speed) linear infinite;
}

.logo-marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__track img {
  height: 55px;
  width: auto;
  display: block;
  opacity: 0.95;
  transition:
    transform 0.2s,
    opacity 0.2s;
}

.marquee__track img:hover {
  transform: scale(1.2);
  opacity: 1;
}

@keyframes scroll {
  from {
    translate: 0;
  }
  to {
    translate: -100%;
  }
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: var(--partners-fade);
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, white, rgba(255, 255, 255, 0));
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, white, rgba(255, 255, 255, 0));
}

/* Responsywność */
@media (max-width: 900px) {
  :root {
    --partners-gap: 48px;
  }
  .marquee__track img {
    height: 45px;
  }
}

@media (max-width: 600px) {
  :root {
    --partners-gap: 32px;
  }
  .marquee__track img {
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
}

/*FIOLETOWY PASEK*/
.bar-section {
  background-color: #9079fb;
  position: relative;
  overflow: visible;
  background: linear-gradient(90deg, #c3fbcc 0%, #9079fb 40%);
}

.bar-container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 42px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 160px;
}

.bar-star {
  position: absolute;
  top: 26px;
  left: -36px;
  width: 49px;
  height: 49px;
  z-index: 2;
  pointer-events: none;
}

.bar-mark {
  position: absolute;
  width: 100px;
  height: auto;
  z-index: 3;
  pointer-events: none;
  opacity: 0.95;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.1));
}

.bar-mark.m1 {
  top: 46px;
  left: 20px;
  width: 93px;
  height: 100px;
  transform: rotate(96deg);
}

.bar-mark.m2 {
  top: -21px;
  left: 46px;
  transform: rotate(171deg);
}
.bar-mark--sm {
  width: 52px;
}

.bar-logo {
  position: absolute;
  width: 123px;
  height: 40px;
  left: 47.5%;
  top: -4px;
  opacity: 0.1;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.bar-text {
  position: relative;
  z-index: 1;
}

.bar-subtitle {
  font-family: "Inter";
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.9;
  color: #bfb6ff;
}
.bar-text h2 {
  font-family: "Inter";
  font-size: 38px;
  font-weight: 700;
  margin-top: 8px;
  line-height: 1.4;
  color: #ffffff;
}

.highlight {
  position: relative;
  z-index: 0;
}

.highlight::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 16px;
  background-color: #3101a3;
  border-radius: 6px;
  z-index: -1;
}

/*SEKCJA DOM*/
:root {
  --ink: #0d0d10;
  --muted: #2a2a33;
  --accent: #9079fb;
  --pill: #4b2cf1;
  --pill-hover: #3101a3;
  --green: #29d19d;
}

.house-section {
  padding: 48px 16px 64px;
}
.house__wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.house__head {
  text-align: center;
  margin-bottom: 18px;
}
.house__eyebrow {
  display: inline-block;
  font: 700 11px/1 "Inter";
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #bfb6ff;
  opacity: 0.95;
  margin-bottom: 6px;
}
.house__title {
  font-family: "Inter";
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 10px;
  color: #0d0d0f;
  font-size: 45px;
}
.house__title .accent {
  color: #9079fb;
}
.house__subtitle {
  font-family: "Inter";
  font-size: 16px;
  font-weight: 700;
  color: #0d0d0f;
  margin: 0 0 4px;
}

.house__stage {
  position: relative;
  margin: 0px auto 10px;
  max-width: 980px;
}
.house__img {
  height: auto;
  display: block;
  border-radius: 8px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.18));
}

.house__video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.18));
  background: #f6f6fb;
}

.pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  min-height: 38px;
  border-radius: 999px;
  background: #3101a3;
  color: #fff;
  font: 700 16px/1 "Inter";
  box-shadow: 0 8px 24px rgba(75, 44, 241, 0.25);
  white-space: nowrap;
  transition: background 0.2s ease;
}

.pill .check {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 20px;
  border-radius: 50%;
  background: #d0bcff;
  color: #000000;
  font-size: 12px;
  font-weight: 900;
  margin-left: 2px;
  object-fit: scale-down;
}

.pill--left {
  top: 134px;
  left: 10%;
  width: 492px;
  justify-content: space-evenly;
  transform: translateY(-100%);
  box-shadow: 4px 4px 1px rgba(144, 121, 251, 1);
  z-index: 3;
}
.pill--right {
  top: 150px;
  right: -24%;
  width: 272px;
  justify-content: space-evenly;
  transform: translateY(-100%);
  box-shadow: 4px 4px 1px rgba(144, 121, 251, 1);
}
.pill--left-2 {
  top: 45%;
  left: -13%;
  background: #ffffff;
  width: 120px;
  justify-content: space-around;
  color: #1c133a;
  box-shadow: 4px 4px 1px rgba(144, 121, 251, 1);
}

.arrow-img {
  position: absolute;
  max-width: 186px;
  height: auto;
  z-index: 3;
}

.arrow-left {
  top: 21%;
  left: 24%;
  transform: translate(-50%, -50%);
}

.arrow-left2 {
  top: 58%;
  transform: translate(-50%, -50%);
}

.arrow-right {
  top: 16%;
  right: 4%;
  transform: rotate(-15deg);
}

.house__cta {
  display: flex;
  justify-content: center;
  position: relative;
}

.btn-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 100px;
  border-radius: 999px;

  background: var(--green);
  border: 1px solid #000;
  color: #000;
  font:
    800 16px/1 Inter,
    sans-serif;
  text-decoration: none;
  text-align: center;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.1s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-cta:hover {
  background: #0db686;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.btn-cta:active {
  transform: translateY(1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/*ZIELONY PASEK*/
:root {
  --fw-bg: #9079fb;
  --fw-bg-dark: #3101a3;
  --fw-green: #c3fbcc;
  --fw-green-deep: #29d19d;
  --fw-text: #0d0d0f;
}

.for-whom {
  background: #c3fbcc;
  color: #fff;
  padding: 60px 20px;
}

.fw__container {
  max-width: 1060px;
  margin: 0 auto;
  text-align: center;
}

.fw__eyebrow {
  font:
    800 15px/1.2 Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  letter-spacing: 1.5%;
  text-transform: uppercase;
  opacity: 0.95;
  color: #3101a3;
}

.fw__title {
  margin: 0 0 28px;
  font-weight: 800;
  line-height: 1.1;
  color: #3101a3;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  font-size: clamp(28px, 5.6vw, 54px);
}
.fw__title span {
  color: #9079fb;
}

.fw__grid {
  list-style: none;
  margin: 18px auto 0;
  padding: 0;
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 18px 28px;
}

.fw-chip {
  width: 100%;
  min-height: 56px;
  padding: 14px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 0;
  background: #3101a3;
  color: #fff;
  font-family: "Inter";
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.05s ease,
    box-shadow 0.2s ease;
}
.fw-chip:hover {
  background: #3501af;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}
.fw-chip:active {
  transform: translateY(1px);
}
.fw-chip:focus-visible {
  outline: 3px solid rgba(41, 209, 157, 0.55);
  outline-offset: 2px;
}

@media (max-width: 1200px) {
  .for-whom {
    padding: 56px 20px;
  }
  .fw__container {
    max-width: 980px;
  }
  .fw__grid {
    gap: 16px 24px;
  }
}

@media (max-width: 980px) {
  .fw__container {
    max-width: 860px;
  }
  .fw__title {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 22px;
  }
  .fw__eyebrow {
    font-size: 13px;
  }
  .fw__grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 16px 20px;
  }
  .fw-chip {
    min-height: 54px;
    font-size: 15px;
    padding: 14px 22px;
  }
}

@media (max-width: 768px) {
  .for-whom {
    padding: 48px 18px;
  }
  .fw__title {
    font-size: 36px;
    line-height: 1.18;
    margin-bottom: 20px;
  }
  .fw__eyebrow {
    font-size: 12px;
  }
  .fw__grid {
    gap: 14px 18px;
  }
}

@media (max-width: 560px) {
  .for-whom {
    padding: 44px 16px;
  }
  .fw__title {
    font-size: 30px;
    line-height: 1.22;
  }
  .fw__eyebrow {
    font-size: 11.5px;
  }
  .fw__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 16px;
  }
  .fw-chip {
    font-size: 14px;
    padding: 12px 16px;
    min-height: 48px;
  }
}

@media (max-width: 400px) {
  .for-whom {
    padding: 36px 12px;
  }
  .fw__title {
    font-size: 26px;
    line-height: 1.24;
  }
  .fw__eyebrow {
    font-size: 11px;
  }
  .fw-chip {
    min-height: 50px;
    font-size: 14px;
    padding: 11px 18px;
  }
}

/*SEKCJA JAK TO DZIAŁA*/
.steps {
  text-align: center;
  margin: 30px auto;
  max-width: 1000px;
  padding: 0 20px;
}

.steps__eyebrow {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  color: #d8b4fe;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.steps__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.3;
  color: #3101a3;
  margin-bottom: 32px;
}

.steps__title .bright {
  color: #9079fb;
}

.steps__benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 20%;
}

.benefit {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #5c3ef7;
  border: 1.5px solid #5c3ef7;
  padding: 10px 35px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.benefit:hover {
  background: #5c3ef7;
  color: #fff;
}

/*KROK 1*/
.box {
  width: 100%;
  margin: 0 auto;
  padding: 32px 16px 20px;
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(520px, 1fr);
  align-items: center;
  gap: 24px;
  position: relative;
}

.box .macbook-pro-inch {
  position: relative;
  z-index: 3;
}
.box .overlap-group {
  position: relative;
  width: 100%;
  height: 312px;
}

.box .macbook-pro {
  position: absolute;
  left: 85%;
  top: -67%;
  transform: translateX(-50%);
  width: 90%;
  height: auto;
  object-fit: contain;
  z-index: 3;
}

.phone {
  position: absolute;
  width: 39%;
  height: auto;
  left: 90%;
  top: -31%;
  z-index: 3;
}

.snake {
  position: absolute;
  width: 233px;
  height: auto;
  top: -26%;
  left: 43%;
  aspect-ratio: 0.8;
  object-fit: cover;
  z-index: 1;
}

.background_eclipse {
  position: absolute;
  top: -48%;
  left: 10%;
  z-index: 0;
}

.vector_snake {
  position: absolute;
  width: 67px;
  height: 62px;
  top: 86%;
  left: 110%;
  z-index: 2;
}

.box .group,
.box .component {
  position: relative;
}

.box .component .overlap-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.box .checklist-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  padding: 6px 12px;
  height: 30px;
  margin: 0 auto -14px;
  background: #9079fb;
  color: #fff;
  border-radius: 6px;
  font:
    700 12px/1 "Inter",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  white-space: nowrap;
  z-index: 4;
}
.box .checklist-badge .znak-fiolet-i-morski {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.box .tag {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  max-width: 920px;
  padding: 45px 48px;

  background: #fff;
  border-radius: 100px;
  box-shadow: 5px 5px 0 #3101a3;
  z-index: 2;
}

.box .rejestrujesz-si-za {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  color: #000;
}

.box .text-wrapper {
  display: block;
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  font-weight: 800;
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 10px;
  background: #fff;
}
.box .text-wrapper-2 {
  display: block;
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.45;
}
.box .span {
  display: none;
}
.box .div {
  margin: 0;
}

.green_box {
  position: absolute;
  top: 7%;
  left: -70%;
  width: 134%;
  height: 74%;
  background-color: #c3fbcc;
  border-radius: 100px;
  z-index: 1;
}
/*RESPONSYWNOŚĆ KROK 1*/
@media (max-width: 1536px) {
  .box .macbook-pro {
    top: -70%;
    width: 90%;
  }
  .phone {
    top: -45%;
    left: 90%;
    width: 38%;
  }
  .snake {
    width: 30%;
    height: auto;
    top: -25%;
    left: 40%;
  }
}

@media (max-width: 1360px) {
  .box .macbook-pro {
    top: -55%;
    width: 90%;
  }
  .phone {
    top: -35%;
    left: 88%;
    width: 40%;
  }
  .snake {
    top: -20%;
  }
  .vector_snake {
    top: 100%;
  }
}

@media (max-width: 1200px) {
  .box {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .box .macbook-pro {
    margin-right: 0;
    order: 1;
    top: -55%;
    left: 50%;
    width: 80%;
  }
  .phone {
    top: -25%;
    left: 55%;
    width: 30%;
  }
  .box .group {
    order: 2;
  }
  .box .overlap-group {
    height: 300px;
  }
  .green_box {
    display: none;
  }
  .box .tag {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0 auto;
  }
  .vector_snake {
    display: none;
  }

  .box .checklist-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0 auto;
  }
  .background_eclipse {
    display: none;
  }
  .snake {
    width: 25%;
    top: -10%;
    left: 15%;
    z-index: 4;
  }
}

@media (max-width: 992px) {
  .box {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 12px 20px;
  }

  .box .overlap-group {
    height: 260px;
  }

  .box .macbook-pro {
    order: 1;
    top: -50%;
    left: 50%;
    width: 80%;
    transform: translateX(-50%);
    margin-right: 0;
  }

  .phone {
    order: 1;
    top: -20%;
    left: 57%;
    width: 28%;
  }

  .box .checklist-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0 auto;
  }

  .box .group {
    order: 3;
  }

  .box .tag {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0 auto;
    max-width: 700px;
    padding: 20px 22px;
    border-radius: 100px;
  }
}

@media (max-width: 768px) {
  .box .overlap-group {
    padding-top: 60%;
  }

  .box .macbook-pro {
    width: 80%;
    top: -40%;
    transform: translate(-50%, -6%);
  }

  .phone {
    width: 36%;
    left: 52%;
    top: -29%;
  }

  .box .tag {
    position: relative;
    border-radius: 40px;
    padding: 18px 16px;
    margin: 0 auto;
    max-width: 600px;
    z-index: 2;
    border-radius: 100px;
  }

  .box .checklist-badge {
    position: relative;
    margin: 10px auto -12px;
    z-index: 3;
  }

  .box .text-wrapper {
    font-size: 26px;
  }
  .box .text-wrapper-2 {
    font-size: 15px;
  }

  .background_eclipse {
    z-index: 0;
  }
  .box .tag {
    z-index: 2;
  }
  .box .macbook-pro,
  .phone {
    z-index: 3;
  }
}

.box .macbook-pro-inch .overlap-group {
  height: 0;
  padding-top: 40%;
  position: relative;
}

.steps__benefits {
  margin-bottom: 0px;
}

.box .component .overlap-group {
  height: auto;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

@media (max-width: 560px) {
  .box {
    padding: 22px 8px 16px;
  }
  .box .tag {
    border-radius: 100px;
    padding: 16px 14px;
    max-width: 520px;
  }
  .box .text-wrapper {
    font-size: 22px;
  }
  .box .text-wrapper-2 {
    font-size: 12.5px;
  }
  .box .checklist-badge {
    height: 28px;
    padding: 5px 10px;
    font-size: 12px;
  }
  .box .macbook-pro {
    width: 108%;
    top: -65%;
  }
  .phone {
    width: 42%;
    left: 57%;
  }
  .box .component .overlap-group {
    margin-top: 30px;
  }
  .snake {
    width: 27%;
    top: -18%;
    left: 6%;
  }
}
/*KROK 2*/
:root {
  --violet-500: #6d4cff;
  --violet-800: #3101a3;
  --ink: #000;
  --text: #1f2937;
  --muted: #6b7280;
  --card-bg: #ffffff;
  --elev: 5px 5px 0 #3101a3;
}

.tag {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  background: transparent;
}

.tag__inner {
  width: 100%;
  margin: 0 auto;
  padding: 32px 16px 20px;
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(520px, 1fr);
  grid-template-areas: "text art";
  align-items: center;
  gap: 32px;
  position: relative;
  margin-bottom: 100px;
}

.wybierasz-bran-i {
  grid-area: text;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 180%;
  max-width: 1100px;
  padding: 45px 48px;

  background-color: var(--card-bg);
  border-radius: 100px;
  box-shadow: var(--elev);
  z-index: 1;
}

.badge2 {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 6px 12px;
  height: 30px;
  background: #9079fb;
  border-radius: 6px;
  color: #fff;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  z-index: 2;
}
.badge2 .div {
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
}
.badge2 .znak-fiolet-i-morski {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.text-wrapper {
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  font-weight: 800;
  font-size: 30px;
  display: block;
  margin: 6px 0 8px 0;
  line-height: 1.1;
  text-align: center;
  color: var(--ink);
}
.span {
  display: block;
  font-family:
    "Poppins-regular",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: var(--muted);
}
.text-wrapper-2 {
  display: block;
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.45;
  text-align: center;
  color: var(--text);
  max-width: 760px;
}

.tag__art {
  grid-area: art;
  display: flex;
  justify-content: flex-end;
}
.tag__art img {
  position: absolute;
  width: 120%;
  top: -30%;
  left: 57%;
  max-width: 820px;
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 24px rgba(49, 1, 163, 0.18))
    drop-shadow(0 8px 0 rgba(49, 1, 163, 0.35));
  border-radius: 16px;
  object-fit: cover;
  z-index: 2;
}

.vector_snake2 {
  position: absolute;
  width: 67px;
  height: 62px;
  top: 100%;
  left: 60%;
  transform: rotate(8deg);
  z-index: 1;
}
/*RESPONSYWNOŚĆ KROK 2*/
@media (max-width: 1450px) {
  .tag__art img {
    max-width: 55%;
    top: -22%;
    left: 54%;
  }
}
@media (max-width: 1200px) {
  .tag__inner {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    margin-bottom: 40px;
    gap: 12px;
    position: relative;
  }

  .tag__art {
    width: 130%;
    position: relative;
    padding-top: 28%;
  }

  .tag__art img {
    position: absolute;
    top: -45%;
    left: 55%;
    transform: translateX(-50%);
    width: 120%;
    height: auto;
    object-fit: contain;
  }

  .wybierasz-bran-i {
    width: 100%;
    max-width: 95%;
    padding: 28px;
    border-radius: 80px;
    background: #fff;
    box-shadow: 5px 5px 0 #3101a3;
    position: relative;
    z-index: 1;
  }

  .badge2 {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }

  .vector_snake2 {
    display: none;
  }
}

@media (max-width: 992px) {
  .tag__inner {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    position: relative;
  }

  .tag__art {
    width: 130%;
    position: relative;
    padding-top: 28%;
  }

  .tag__art img {
    position: absolute;
    top: -55%;
    left: 55%;
    transform: translateX(-50%);
    width: 115%;
    height: auto;
    object-fit: contain;
  }

  .wybierasz-bran-i {
    width: 100%;
    max-width: 700px;
    padding: 22px;
    border-radius: 100px;
    background: #fff;
    box-shadow: 5px 5px 0 #3101a3;
    position: relative;
    z-index: 1;
  }

  .badge2 {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }

  .wybierasz-bran-i .text-wrapper {
    font-size: 26px;
  }
  .wybierasz-bran-i .text-wrapper-2 {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .wybierasz-bran-i {
    border-radius: 100px;
    padding: 20px 18px;
    max-width: 600px;
  }
  .text-wrapper {
    font-size: 22px;
  }
  .text-wrapper-2 {
    font-size: 12.5px;
  }
  .tag__art img {
    top: -68%;
    left: 55%;
  }
}

@media (max-width: 560px) {
  .wybierasz-bran-i {
    border-radius: 100px;
    padding: 16px 14px;
    max-width: 100%;
  }
  .badge2 {
    height: 28px;
    padding: 5px 10px;
    font-size: 12px;
    top: -12px;
  }
  .wybierasz-bran-i .text-wrapper {
    font-size: 22px;
  }
  .wybierasz-bran-i .text-wrapper-2 {
    font-size: 12.5px;
  }
  .tag__art img {
    top: -70%;
    left: 55%;
    width: 40%;
    filter: none;
  }
  .tag__art {
    width: 230%;
    position: relative;
    padding-top: 28%;
  }
}

/*Krok 3*/
.board {
  position: absolute;
  left: 55%;
  top: 0%;
  width: 526px;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

.vector_snake3 {
  position: absolute;
  width: 83px;
  height: auto;
  top: 90%;
  left: 95%;
}
/* RESPONSYWNOŚĆ KROK 3 */
@media (max-width: 1536px) {
  .board {
    top: 0%;
    left: 40%;
  }
  .vector_snake3 {
    top: 113%;
  }
}

@media (max-width: 1360px) {
  .board {
    top: -15%;
    left: 29%;
  }
}

@media (max-width: 1200px) {
  .board {
    top: 0%;
    left: 25%;
    width: 50%;
  }
  .vector_snake3 {
    display: none;
  }
}
@media (max-width: 560px) {
  .board {
    width: 75%;
    left: 12%;
  }
}
/*Krok 4*/
.tag__art2 {
  position: relative;
  z-index: 2;
}
.tag__art2 img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  left: 35%;
  z-index: 2;
}

.tag__art2::after {
  content: "";
  position: absolute;
  bottom: 44px;
  left: 65%;
  transform: translateX(-50%);
  width: 90%;
  height: 120px;
  background: radial-gradient(
    ellipse at center,
    rgba(109, 76, 255, 0.45) 115%,
    rgba(109, 76, 255, 0) 80%
  );
  filter: blur(40px);
  z-index: -1;
}

.green_box2 {
  position: absolute;
  top: 13%;
  left: 62%;
  width: 566px;
  height: 316px;
  background-color: #c3fbcc;
  border-radius: 100px;
  z-index: -1;
}

.cta-btn {
  position: absolute;
  top: 90%;
  font-family: "Inter";
  font-weight: 800;
  background: #29d19d;
  color: #000;
  padding: 14px 26px;
  border-radius: 25px;
  border: 1px solid #000;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.cta-btn:hover {
  background: #0db686;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.cta-btn:active {
  transform: translateY(1px);
}

/* RESPONSYWNOŚĆ KROK 4 */
@media (max-width: 1536px) {
  .green_box2 {
    left: 66%;
    width: 31%;
  }
  .tag__art2 img {
    left: 30%;
  }
  .tag__art2::after {
    left: 65%;
    width: 50%;
  }
}

@media (max-width: 1360px) {
  .tag__art2 img {
    left: 30%;
    width: 80%;
  }
}

@media (max-width: 1200px) {
  .green_box2 {
    left: 12%;
    width: 77%;
    top: -29%;
    height: 36%;
  }
  .tag__art2 img {
    left: 13%;
  }
  .tag__art2::after {
    left: 70%;
    width: 60%;
    background: radial-gradient(
      ellipse at center,
      rgba(195, 251, 204) 115%,
      rgba(109, 76, 255, 0) 80%
    );
  }
}
@media (max-width: 992px) {
  .green_box2 {
    left: 15%;
    width: 71%;
    top: -21%;
    height: 26%;
  }
}
@media (max-width: 560px) {
  .green_box2 {
    left: 4%;
    width: 93%;
    top: -20%;
    height: 26%;
  }
}
@media (max-width: 400px) {
  .tag__art2 img {
    width: 82%;
  }
}
/*Krok 5*/
.karteczka {
  width: 298px;
  height: auto;
  position: absolute;
  left: 80%;
  top: -21%;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  z-index: 2;
}

.karteczka::after {
  content: "";
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 120px;
  background: radial-gradient(
    ellipse at center,
    rgba(109, 76, 255, 0.45) 115%,
    rgba(109, 76, 255, 0) 80%
  );
  filter: blur(40px);
  z-index: -1;
}

.tag-bizmi {
  width: 372px;
  height: 209px;
  position: absolute;
  left: 60%;
  top: 5%;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

.bizmi-snake2 {
  position: absolute;
  width: 189px;
  height: 179px;
  top: 46%;
  left: 72%;
  aspect-ratio: 0.8;
  z-index: 1;
  object-fit: scale-down;
  transform: rotate(65deg);
}

.star {
  position: absolute;
  width: 95px;
  height: 97px;
  top: -7%;
  left: 75%;
  aspect-ratio: 0.8;
  z-index: 1;
  object-fit: scale-down;
  transform: rotate(65deg);
}

@media (max-width: 1480px) {
  .tag-bizmi {
    left: 55%;
  }
  .bizmi-snake2 {
    left: 68%;
  }
}
@media (max-width: 1350px) {
  .karteczka {
    width: 42%;
  }
  .bizmi-snake2 {
    top: 48%;
  }
}
@media (max-width: 1200px) {
  .tag-bizmi {
    display: none;
  }
  .karteczka {
    width: 29%;
    top: 7%;
    left: 36%;
  }
  .bizmi-snake2 {
    left: 29%;
    top: 16%;
  }
  .star {
    width: 29%;
    left: 50%;
    top: 50%;
  }
}
@media (max-width: 768px) {
  .bizmi-snake2 {
    left: 29%;
    top: 16%;
    width: 15%;
  }
  .star {
    width: 15%;
    left: 55%;
    top: 50%;
  }
}
@media (max-width: 768px) {
  .bizmi-snake2 {
    left: 29%;
    top: 0%;
    width: 15%;
  }
}
@media (max-width: 560px) {
  .karteczka {
    width: 35%;
    top: 7%;
    left: 33%;
  }
  .bizmi-snake2 {
    left: 27%;
    top: -6%;
    width: 16%;
  }
  .star {
    width: 15%;
    left: 58%;
    top: 50%;
  }
}
@media (max-width: 410px) {
  .karteczka {
    width: 47%;
    top: -18%;
    left: 31%;
  }
  .bizmi-snake2 {
    left: 23%;
    top: -34%;
    width: 21%;
  }
  .star {
    width: 23%;
    left: 63%;
    top: 50%;
  }
}
/*Krok 6*/
.laptop-6 img {
  position: absolute;
  left: 60%;
  top: 2%;
  width: 566px;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  z-index: 2;
}

.Vector-end {
  position: absolute;
  width: 34px;
  height: auto;
  top: 110%;
  left: 55%;
}

.button-end {
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: 50px;
}

.btn-end {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 100px;
  border-radius: 999px;

  background: var(--green);
  border: 1px solid #000;
  color: #000;
  font:
    800 16px/1 Inter,
    sans-serif;
  text-decoration: none;
  text-align: center;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.1s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-end:hover {
  background: #0db686;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.btn-end:active {
  transform: translateY(1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
/*RESPONSYWNOŚĆ DLA KROK 6*/
@media (max-width: 1350px) {
  .laptop-6 img {
    width: 470px;
    top: 15%;
  }
}

@media (max-width: 1200px) {
  .tag__inner {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 14px;
    margin-bottom: 48px;
    position: relative;
  }

  .laptop-6 {
    width: 100%;
    max-width: 760px;
    position: relative;
    padding-top: 35%;
  }
  .laptop-6 img {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    z-index: 2;
  }

  .wybierasz-bran-i {
    width: 100%;
    max-width: 720px;
    padding: 28px;
    border-radius: 80px;
    background: #fff;
    box-shadow: 5px 5px 0 #3101a3;
    position: relative;
    z-index: 1;
  }

  .badge2 {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
  }

  .Vector-end {
    display: none;
  }
}

@media (max-width: 1090px) {
  .laptop-6 img {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    z-index: 2;
  }
  .laptop-6 {
    width: 100%;
    max-width: 760px;
    position: relative;
    padding-top: 33%;
  }
}

@media (max-width: 992px) {
  .tag__inner {
    gap: 12px;
    margin-bottom: 40px;
  }

  .laptop-6 {
    max-width: 680px;
    padding-top: 35%;
  }
  .laptop-6 img {
    top: -6%;
    width: 75%;
  }

  .wybierasz-bran-i {
    max-width: 680px;
    padding: 22px;
    border-radius: 64px;
  }
  .wybierasz-bran-i .text-wrapper {
    font-size: 26px;
  }
  .wybierasz-bran-i .text-wrapper-2 {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .laptop-6 {
    max-width: 600px;
    padding-top: 40%;
  }
  .laptop-6 img {
    top: -4%;
    width: 75%;
  }

  .wybierasz-bran-i {
    max-width: 600px;
    padding: 20px 18px;
    border-radius: 40px;
  }

  .button-end {
    margin-bottom: 36px;
  }
  .btn-end {
    padding: 16px 60px;
    font-size: 15px;
  }
}

@media (max-width: 560px) {
  .tag {
    padding: 22px 8px 16px;
  }

  .laptop-6 {
    max-width: 520px;
    padding-top: 48%;
  }
  .laptop-6 img {
    top: -6%;
    width: 90%;
  }

  .wybierasz-bran-i {
    max-width: 520px;
    padding: 16px 14px;
    border-radius: 28px;
  }
  .badge2 {
    top: -12px;
    height: 28px;
    padding: 5px 10px;
    font-size: 12px;
  }
  .wybierasz-bran-i .text-wrapper {
    font-size: 22px;
  }
  .wybierasz-bran-i .text-wrapper-2 {
    font-size: 12.5px;
  }

  .btn-end {
    padding: 14px 28px;
    width: auto;
  }
}
/*CENNIK*/
.pricing {
  position: relative;
  overflow: hidden;
  padding: 64px 20px 72px;
  color: #fff;
  background: linear-gradient(180deg, #3a05cf 0%, #3101a3 100%);
}

.pricing::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 50%;
  width: 100%;
  height: 130%;
  background: url("../grafiki/Ellipse 5.png") no-repeat center/cover;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.5;
}

.pricing .container {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.eyebrow {
  color: #29d19d;
  font-family: "Inter";
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  text-align: center;
}

.pricing h2 {
  font-family: "Inter";
  margin: 0 auto 18px;
  font-size: 42px;
  line-height: 1.15;
  text-align: center;
  font-weight: 700;
  max-width: 550px;
}

.toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 16px 0 40px;
  font-family: "Inter";
  font-weight: 600;
}
.toggle-label {
  opacity: 0.95;
}

.switch {
  --h: 28px;
  --w: 56px;
  --p: 4px;
  position: relative;
  display: inline-block;
  width: var(--w);
  height: var(--h);
  cursor: pointer;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  inset: 0;
  background: #e8e6ff;
  border-radius: 999px;
  transition: 0.25s;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.25);
}
.slider:before {
  content: "";
  position: absolute;
  left: var(--p);
  top: var(--p);
  width: calc(var(--h) - var(--p) * 2);
  height: calc(var(--h) - var(--p) * 2);
  background: rgba(78, 0, 178, 1);
  border-radius: 50%;
  transition: 0.25s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
.switch input:checked + .slider {
  background: #d3caff;
}
.switch input:checked + .slider:before {
  transform: translateX(calc(var(--w) - var(--h)));
}

.grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1000px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #fff;
  color: #0b0b0c;
  border-radius: 88px;
  padding: 38px 24px 54px;
  box-shadow: 6px 6px 1px rgba(144, 121, 251, 1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.card h3 {
  font-size: 38px;
  margin: 0 0 6px;
  font-family: "Poppins";
  font-weight: 700;
  font-style: bold;
  text-align: center;
}

.card .price {
  position: relative;
  margin-top: 8px;
}

.card .price::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #e8e8ef;
  border-radius: 2px;
  margin: 14px auto 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #c3fbcc;
  color: #000000;
  border-radius: 999px;
  padding: 8px 22px;
  font-size: 14px;
  font-family: "Poppins";
  font-weight: 700;
  font-style: bold;
}
.badge-avatar {
  width: 22px;
  height: 22px;
  object-fit: cover;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}

.price {
  font-family: "Poppins";
  font-weight: 800;
  font-size: 40px;
  letter-spacing: 0.5px;
  color: #9079fb;
  text-align: center;
}
.price small {
  font-family: "Inter";
  font-size: 12px;
  font-weight: 600;
  color: #5b5b6a;
  margin-left: 8px;
}

.net-value {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
  color: gray;
  font-family: "Inter";
  font-size: 12px;
  margin-bottom: 10px;
  white-space: nowrap;
}

.features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.features li {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 14px;
  color: #000;
  display: flex;
  align-items: center;
  line-height: 1.4;
}

li.bold {
  font-weight: 700;
}

.features li::before {
  content: "✓";
  font-size: 20px;
  margin-right: 12px;
  color: #9079fb;
  font-weight: 900;
  flex-shrink: 0;
}

.btn {
  margin-top: auto;
  display: inline-block;
  text-align: center;
  padding: 14px 18px;
  border-radius: 999px;
  background: #00c27a;
  color: #001b12;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 194, 122, 0.35);
  transition: 0.2s transform;
  font-family: "Inter";
  font-weight: 800;
  border: 1px solid #000;
}
.btn:hover {
  transform: translateY(-1px);
}

@media (max-width: 400px) {
  .eyebrow {
    font-size: 11px;
  }
  .pricing h2 {
    font-size: 26px;
  }
  .toggle-wrap {
    font-size: 16px;
  }
}

/* FAQ */
.faq {
  --purple: #3101a3;
  --purple-dark: #21006e;
  --text: #0d0d0f;

  max-width: 1040px;
  margin: 36px auto 80px;
  padding: 0 20px;
}

.faq__eyebrow {
  font-family: "Inter";
  font-weight: 700;
  margin: 6px 0 10px;
  text-align: center;
  color: #29d19d;
  font-size: 12px;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.faq h2,
.faq__title {
  font-family: "Inter";
  font-weight: 800;
  margin: 0 0 24px;
  text-align: center;
  color: var(--text);
  font-size: 44px;
  line-height: 1.1;
}

.faq__list {
  display: grid;
  padding: 14px 0;
}

.faq-item {
  background: #fff;
  border: 2px solid var(--purple);
  border-radius: 26px;
  overflow: hidden;
  margin-bottom: 26px;

  transition: border-color 220ms ease;
}

.faq-item:hover {
  border-color: var(--purple-dark);
}

.faq-question {
  font-family: "Poppins";
  font-weight: 700;
  font-size: 24px;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  background: transparent;
  border: 0;
  cursor: pointer;

  padding: 22px 26px;
  color: var(--text);
  text-align: left;
}

.faq-question:focus-visible {
  outline: 3px solid rgba(75, 44, 241, 0.35);
  outline-offset: 2px;
  border-radius: 20px;
}

.faq-question i {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;

  display: grid;
  place-items: center;

  background: var(--purple);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;

  will-change: transform;
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    background 220ms ease;
}

.faq-item:hover .faq-question i {
  background: var(--purple-dark);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  background: #fff;
  padding: 0;
  overflow: hidden;
}

.faq-answer__inner {
  font-family: "Poppins";
  font-weight: 500;
  font-size: 15px;
  line-height: 1.55;

  padding: 12px 26px 32px;

  opacity: 0;
  transform: translateY(-4px);
  will-change: opacity, transform;

  transition:
    opacity 200ms ease-out,
    transform 200ms ease-out;
}

.faq-item.active .faq-answer__inner,
.faq-answer.is-open .faq-answer__inner {
  opacity: 1;
  transform: translateY(0);
}

.faq-extra[hidden] {
  display: none !important;
}

.faq-extra {
  display: grid;
  gap: 26px;
}

.faq-button.faq-show-more-tile {
  background: #fff;
  border: 2px solid var(--purple);
  border-radius: 100px;
  display: inline-block;
  padding: 0;
  margin: 30px auto 0;

  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.faq-button:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
}

.faq-show-more-tile.active {
  border-color: var(--purple-dark);
}

.faq-more {
  font-family: "Poppins";
  font-weight: 700;
  font-size: 20px;

  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  background: transparent;
  border: 0;
  cursor: pointer;

  padding: 14px 22px;
  color: var(--text);
  white-space: nowrap;

  transition: color 200ms ease;
}

.faq-button:hover .faq-more {
  color: #fff;
}

.faq-more:focus-visible {
  outline: 3px solid rgba(75, 44, 241, 0.35);
  outline-offset: 2px;
  border-radius: 20px;
}

.faq-more i {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;

  display: grid;
  place-items: center;

  background: var(--purple);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;

  will-change: transform;
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    background 220ms ease;
}

.faq-button:hover .faq-more i {
  background: #140048;
}

/* Mobile */
@media (max-width: 640px) {
  .faq {
    margin: 24px auto 64px;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 18px;
  }

  .faq-question i {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .faq-answer__inner {
    padding: 10px 20px 26px;
    font-size: 15px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .faq-item,
  .faq-question i,
  .faq-answer__inner,
  .faq-button.faq-show-more-tile,
  .faq-more,
  .faq-more i {
    transition: none !important;
  }
}

/*NEWSLETTER*/
.nl {
  display: flex;
  justify-content: center;
  padding: 40px 16px 90px;
  font-family: "Inter";
}
.nl__card {
  position: relative;
  width: min(820px, 100%);
  background: #9079fb;
  color: #fff;
  border-radius: 18px;
  padding: 34px 36px 28px;
  box-shadow:
    0 22px 40px rgba(0, 0, 0, 0.1),
    0 60px 120px rgba(144, 121, 251, 0.35);
}

.nl__sparkle {
  position: absolute;
  top: 14px;
  right: 64px;
  width: 54px;
  height: 54px;
  opacity: 0.9;
  pointer-events: none;
}

.nl__title {
  margin: 0 0 6px 0;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.25;
  font-weight: 700;
  font-family: "Inter";
  font-size: 36px;
}
.nl__desc {
  font-family: "Inter";
  font-weight: 400;
  font-size: 17px;
  margin: 0 0 58px 0;
  font-size: 14px;
  opacity: 0.92;
}

.bright-green {
  color: #c3fbcc;
}

.nl__form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  padding: 6px;
  gap: 8px;
  max-width: 540px;
  margin: 0 auto;
}
.nl__form input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #222;
  font-size: 15px;
  padding: 12px 14px 12px 18px;
  min-width: 0;
}
.nl__form input::placeholder {
  color: #9aa0a6;
}

.nl__form button {
  border: 0;
  outline: 0;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 15px;
  padding: 12px 30px;
  border-radius: 999px;
  background: #10c694;
  color: #fff;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.08);
  transition:
    transform 0.05s ease,
    background 0.2s ease;
  border: 1px solid #000;
  font-family: "Roboto";
  font-weight: 700;
}
.nl__form button:hover {
  background: #0db686;
}
.nl__form button:active {
  transform: translateY(1px);
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 560px) {
  .nl__card {
    padding: 28px 18px 22px;
    border-radius: 16px;
  }
  .nl__form {
    max-width: 100%;
    padding: 6px;
  }
  .nl__sparkle {
    right: 56px;
    width: 28px;
    height: 28px;
  }
  .nl__avatar {
    right: 16px;
    width: 32px;
    height: 32px;
  }
}

/*STOPKA*/
.footer {
  width: 100%;
  color: #fff;
  background-color: #3101a3;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  overflow: hidden;
  padding: 48px 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 100px;
  padding: 0 72px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-logo img {
  height: 54px;
  display: block;
  margin-left: -28px;
}

.footer-links {
  display: flex;
  gap: 48px;
}

.footer-links h4 {
  font-family: "Inter";
  font-size: 17px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 8px 0;
}

.footer-links a {
  font-family: "Inter";
  font-weight: 400;
  display: block;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-top: 4px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social h4 {
  font-family: "Inter";
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 12px;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.1s;
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}
/*RESPONSYWNOŚĆ DLA MENU*/
nav {
  display: flex;
  gap: 58px;
}
.nav-carousel {
  display: none;
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .main-header {
    justify-content: flex-start;
    padding: 12px 16px;
  }
  .logo {
    position: static;
    margin-right: 0px;
    height: 40px;
  }

  .nav-carousel {
    position: relative;
    display: block;
    overflow: hidden;
    height: 26px;
    flex: 1;
  }

  .nav-carousel a {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    line-height: 26px;
    opacity: 0;
    transform: translateY(100%);
    transition:
      transform 0.4s ease,
      opacity 0.4s ease;
  }

  .nav-carousel a.active {
    opacity: 1;
    transform: translateY(0);
    font-family: "Inter";
    font-weight: bold;
    text-decoration: none;
  }
  .nav-carousel a.exit {
    opacity: 0;
    transform: translateY(-100%);
    text-decoration: none;
  }
}

/*RESPONSYWNOŚĆ DLA HERO*/
@media (max-width: 1518px) {
  .hero {
    margin-bottom: 30px;
  }
}

@media (max-width: 1400px) {
  .hero {
    padding-left: 96px;
  }
  .hero h1 {
    font-size: 52px;
  }

  .laptop {
    width: 700px;
  }
}

@media (max-width: 1220px) {
  .laptop {
    width: 640px;
  }
}

@media (max-width: 1160px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 56px 24px 24px;
    min-height: unset;
    margin-bottom: 0px;
  }

  .hero-text {
    max-width: 720px;
    margin-top: 25px;
  }

  .hero h1 {
    font-size: 48px;
    line-height: 1.15;
    margin: 12px 0;
  }

  .hero-desc {
    font-size: 17px;
    margin-bottom: 26px;
  }

  .hero-image {
    justify-content: flex-end;
    margin-top: 8px;
    width: 100%;
  }

  .laptop {
    width: clamp(380px, 88vw, 640px);
    margin-right: -40px;
  }

  .hero-image::before {
    right: -166px;
    top: 34%;
    width: 980px;
    height: 244%;
    filter: blur(110px);
  }
}

@media (max-width: 720px) {
  .laptop {
    width: clamp(380px, 90vw, 560px);
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 48px 18px 20px;
    flex-direction: column;
  }

  .hero-subtitle {
    font-size: 12px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.15;
  }

  .laptop {
    width: 90vw;
    max-width: 410px;
    height: auto;
    margin-right: -50px;
  }

  .hero-image::before {
    right: -300px;
    width: 820px;
    height: 250%;
    filter: blur(100px);
  }
}

@media (max-width: 400px) {
  .hero-image {
    justify-content: center;
  }
}

@media (min-width: 1600px) {
  .hero h1 {
    font-size: 64px;
  }
  .hero-image::before {
    width: 1300px;
    height: 340%;
  }
}
/*RESPONSYWNOŚĆ DLA FIOLETOWEGO PASKA*/
@media (max-width: 1024px) {
  .bar-container {
    padding: 56px 20px;
    min-height: 150px;
  }
  .bar-text h2 {
    font-size: 32px;
    line-height: 1.3;
  }
  .bar-subtitle {
    font-size: 13px;
  }

  .bar-logo {
    width: 96px;
    height: auto;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    opacity: 0.12;
  }
  .bar-mark.m1 {
    top: 52%;
    left: 50px;
    width: 50px;
    height: auto;
  }
  .bar-mark.m2 {
    top: 188px;
    left: 46px;
    width: 60px;
  }
  .bar-star {
    width: 30px;
    height: auto;
    left: 19px;
    top: 160px;
  }
  .highlight::before {
    height: 14px;
    bottom: 3px;
  }
  .bar-section {
    background: #9079fb;
  }
}

@media (max-width: 768px) {
  .bar-container {
    padding: 48px 16px;
    min-height: 140px;
  }
  .bar-text h2 {
    font-size: 28px;
    line-height: 1.25;
    max-width: 34ch;
    margin-left: auto;
    margin-right: auto;
  }
  .bar-subtitle {
    font-size: 12px;
    letter-spacing: 0.5px;
  }

  .bar-logo {
    width: 78px;
    opacity: 0.1;
    top: 2px;
  }
  .bar-mark.m1 {
    width: 30px;
    height: auto;
    top: 180px;
    left: 55px;
  }
  .bar-mark.m2 {
    display: none;
  }
  .bar-star {
    width: 30px;
    height: auto;
    left: 19px;
    top: 160px;
  }

  .highlight::before {
    height: 12px;
    bottom: 2px;
  }
}

@media (max-width: 560px) {
  .bar-container {
    padding: 40px 14px;
    min-height: 128px;
  }
  .bar-text h2 {
    font-size: 24px;
    line-height: 1.22;
    max-width: 28ch;
  }
  .bar-text h2 br {
    display: none;
  }

  .bar-subtitle {
    font-size: 11px;
  }
  .bar-logo {
    display: none;
  }
  .bar-mark.m1 {
    width: 30px;
    height: auto;
    top: 180px;
    left: 55px;
  }
  .bar-star {
    width: 30px;
    height: auto;
    left: 19px;
    top: 160px;
  }

  .highlight::before {
    height: 10px;
    bottom: 2px;
    border-radius: 5px;
  }
}

@media (max-width: 400px) {
  .bar-container {
    padding: 32px 12px;
    min-height: 120px;
  }
  .bar-text h2 {
    font-size: 22px;
    line-height: 1.2;
    max-width: 26ch;
  }
  .bar-subtitle {
    font-size: 10.5px;
  }
  .bar-mark.m1 {
    width: 26px;
    height: auto;
    top: 155px;
    left: 40px;
  }
  .bar-star {
    width: 22px;
    height: auto;
    left: 19px;
    top: 139px;
  }
  .highlight::before {
    height: 8px;
    bottom: 2px;
  }
}
/*RESPONSYWNOŚĆ DLA SEKCJI DOMKU*/
@media (max-width: 1200px) {
  .house-section {
    padding: 44px 16px 60px;
  }
  .house__wrap {
    max-width: 1000px;
  }
  .house__title {
    font-size: 40px;
    line-height: 1.12;
  }
  .house__subtitle {
    font-size: 15px;
  }
}

@media (max-width: 992px) {
  .house-section {
    padding: 40px 16px 56px;
  }
  .house__wrap {
    max-width: 860px;
  }
  .house__title {
    font-size: 36px;
    line-height: 1.14;
    margin-bottom: 12px;
  }
  .house__subtitle {
    font-size: 15px;
    line-height: 1.4;
  }
}

@media (max-width: 768px) {
  .house-section {
    padding: 36px 14px 52px;
  }
  .house__wrap {
    max-width: 640px;
  }
  .house__head {
    margin-bottom: 14px;
  }
  .house__eyebrow {
    font-size: 10px;
    letter-spacing: 0.08em;
  }
  .house__title {
    font-size: 32px;
    line-height: 1.18;
  }
  .house__subtitle {
    font-size: 14px;
    font-weight: 700;
  }
}

@media (max-width: 560px) {
  .house-section {
    padding: 32px 12px 44px;
  }
  .house__wrap {
    max-width: 520px;
  }
  .house__title {
    font-size: 28px;
    line-height: 1.22;
  }
  .house__subtitle {
    font-size: 13.5px;
    line-height: 1.45;
  }
  .house__title br {
    display: none;
  }
}

@media (max-width: 400px) {
  .house-section {
    padding: 28px 10px 40px;
  }
  .house__title {
    font-size: 24px;
    line-height: 1.24;
  }
  .house__subtitle {
    font-size: 13px;
  }
  .house__eyebrow {
    font-size: 9.5px;
  }
}

@media (max-width: 1450px) {
  .pill--right {
    top: 120px;
    right: -10%;
  }
}

@media (max-width: 1200px) {
  .house__stage {
    max-width: 820px;
    margin: 0 auto 16px;
  }
  .house__img {
    width: 100%;
    height: auto;
  }

  .arrow-img {
    display: none;
  }

  .pill {
    display: none;
  }

  .pill--right {
    display: inline-flex;
    left: 50%;
    top: 6%;
    transform: translate(-50%, -60%);
    width: 272px;
    padding: 12px 20px;
    gap: 10px;
    white-space: nowrap;
    z-index: 4;
  }
}

@media (max-width: 992px) {
  .house__stage {
    max-width: 720px;
  }
  .pill--left {
    transform: translate(-50%, -55%);
    padding: 10px 18px;
    font-size: 15px;
  }
  .pill--left .check {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }
  .btn-cta {
    padding: 16px 72px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .house__stage {
    max-width: 600px;
  }
  .pill--left {
    transform: translate(-50%, -52%);
    font-size: 14px;
  }
  .btn-cta {
    padding: 14px 48px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .house__stage {
    max-width: 420px;
  }
  .pill--left {
    transform: translate(-50%, -48%);
    padding: 9px 14px;
    font-size: 13px;
    box-shadow: 3px 3px 0 rgba(144, 121, 251, 1);
  }
  .pill--left .check {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }
  .btn-cta {
    padding: 12px 28px;
    font-size: 13.5px;
  }
}
/* RESPONSYWNOŚĆ DLA STOPKI */
@media (max-width: 900px) {
  .footer {
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    padding: 44px 0;
  }

  .footer-content {
    margin: 0 auto;
    padding: 0 24px;
    gap: 24px;
  }

  .footer-links {
    gap: 32px;
  }
}

@media (max-width: 700px) {
  .footer-content {
    align-items: center;
    text-align: center;
    padding: 0 20px;
  }

  .footer-logo img {
    height: 70px;
  }

  .footer-links {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }

  .footer-links > div {
    width: 100%;
    max-width: 360px;
  }

  .footer-links h4 {
    margin-bottom: 10px;
    font-size: 18px;
  }

  .footer-links a {
    font-size: 18px;
  }

  .footer-social {
    width: 100%;
    max-width: 360px;
  }

  .social-icons {
    justify-content: center;
    gap: 14px;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 40px 0;
  }

  .footer-logo img {
    height: 65px;
  }

  .footer-links {
    gap: 18px;
  }

  .footer-links h4 {
    font-size: 16px;
    letter-spacing: 0.2px;
  }

  .footer-links a {
    font-size: 16px;
  }

  .footer-social h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .social-icons a {
    width: 38px;
    height: 38px;
    border-width: 1px;
  }
}

@media (max-width: 360px) {
  .footer-content {
    padding: 0 16px;
  }
  .social-icons {
    gap: 12px;
  }
  .social-icons a {
    width: 36px;
    height: 36px;
  }
}

#toast-root {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 10px;
  z-index: 9999;
}

.toast {
  min-width: 260px;
  max-width: 90vw;
  background: #111;
  color: #fff;
  padding: 12px 14px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
  font:
    500 14px/1.4 Inter,
    system-ui,
    sans-serif;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.toast--ok {
  background: #0f172a;
  border: 1px solid #29d19d;
}
.toast--error {
  background: #1f2937;
  border: 1px solid #ef4444;
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}
