*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  color: #022939;
  background-color: #FAFBFF;
  line-height: 1.6;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrapper-content {
  max-width: 1403px;
  margin: 0 auto;
}

.flex-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 75px 0;
}

.wrapper-website {
  max-width: 1835px;
  margin: auto;
}

body.menu-open {
  position: fixed;
  width: 100%;
}

.menu {
  display: flex;
  align-items: center;
  position: relative;
}

.menu nav {
  background: none;
}

.menu nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.menu nav a {
  font-size: 16px;
  font-weight: 400;
  color: #111827;
}

.menu nav a:hover,
.menu nav a.active {
  font-weight: 600;
}

.menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: #ffffff;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  padding: 80px 24px;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  z-index: 1002;
  padding-top: 150px;
}

.menu-panel.open {
  transform: translateX(0);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1003;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #111827;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1001;
}

.overlay.open {
  opacity: 1;
  pointer-events: all;
}

@media (min-width: 769px) {
  .menu-panel {
    position: static;
    transform: none;
    height: auto;
    width: auto;
    padding: 0;
    box-shadow: none;
    background: none;
  }

  .menu nav ul {
    flex-direction: row;
    gap: 24px;
  }

  .hamburger {
    display: none;
  }

  .overlay {
    display: none;
  }
}

.menu {
  position: relative;
}

@media (max-width: 768px) {
  .hamburger {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
}

@media (max-width: 768px) {
  body.admin-bar .hamburger {
    top: 0px;
  }
}

@media (min-width: 769px) {
  body.admin-bar .hamburger {
    top: 32px;
  }
}

.menu nav a {
  position: relative;
  display: inline-block;
  font-weight: 400;
}

.menu nav a::after {
  content: attr(data-text);
  font-weight: 600;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  display: block;
}

.content-box-hero-about {
  background: #fff;
  border-radius: 35px;
  padding: 30px;
}

.background-hero {
  background: url(../assets/img/header.png);
  height: 548px;
  background-position: right;
  background-color: #130e17;
  background-repeat: no-repeat;
  border-radius: 30px;
  max-width: 1748px;
  margin: auto;
  padding: 0px 40px;
}

.flex-h {
  display: flex;
  align-items: center;
  height: 100%;
}

.title-hero {
  font-family: 'Outfit', sans-serif;
  color: #fff;
  font-size: 56px;
  max-width: 555px;
  font-weight: 600;
  line-height: 1.4;
}

p.description-hero {
  color: #fff;
  font-size: 16px;
  font-family: 'Figtree';
  font-weight: 500;
  max-width: 607px;
  margin: 10px 0px;
}

@media (max-width: 768px) {
  .background-hero {
    height: auto;
    padding: 40px 20px;
    background-position: top right;
  }

  .title-hero {
    font-size: 36px;
    line-height: 1.25;
  }

  .description-hero {
    font-size: 15px;
  }
}

@media (max-width: 968px) {
  .content-her {
    position: relative;
    padding: 24px;
    border-radius: 16px;
  }

  .content-her::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(19, 14, 23, 0.75);
    border-radius: 16px;
    z-index: 0;
  }

  .content-her > * {
    position: relative;
    z-index: 1;
  }
}

.colorblue {
  color: #006EFF;
}

.feature:hover .iconify {
  transform: scale(1.1);
  transition: 0.2s;
}

.about {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding: 50px 60px;
  background: #ffffff;
  text-align: center;
}

.about-item {
  flex: 1;
  max-width: 380px;
  margin: 0 auto;
}

.about-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-icon .iconify {
  width: 44px;
  height: 44px;
  color: #3b82f6;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.about-title {
  font-size: 32px;
  font-weight: 600;
  font-family: 'Outfit';
  color: #022939;
  margin-bottom: 18px;
}

.about-description {
  font-size: 15px;
  line-height: 1.7;
  color: #022939;
  font-family: 'Figtree';
}

.about-description a,
.about-description span {
  color: #3b82f6;
  font-weight: 500;
}

.about-item:hover .about-icon .iconify {
  transform: translateY(-4px) scale(1.05);
  filter: drop-shadow(0 8px 14px rgba(59, 130, 246, 0.35))
    drop-shadow(0 0 14px rgba(96, 165, 250, 0.45));
}

@media (max-width: 900px) {
  .about {
    flex-direction: column;
    padding: 70px 30px;
    gap: 50px;
  }
}

.services-section {
  margin: 120px auto;
}

.section-title {
  font-size: 36px;
  font-weight: 500;
  font-family: 'Outfit';
  text-align: left;
  color: #022939;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 20px;
}

.service-card {
  position: relative;
  padding: 60px 32px 40px;
  border-radius: 24px;
  background: #fff;
  text-align: center;
  border: 1px solid #e8f0ff;
  transition: all 0.35s ease;
}

.service-card.active {
  background: linear-gradient(135deg, #2f6bff, #45c3e6);
  color: #fff;
  border: none;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.service-card .icon {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(47,107,255,0.25);
}

.service-card .icon .iconify {
  font-size: 22px;
  color: #2f6bff;
}

.service-card.active .icon .iconify {
  color: #2f6bff;
}

.service-card .tag {
  display: block;
  font-size: 16px;
  color: #6fa3ff;
  margin-bottom: 6px;
  font-family: 'Outfit';
}

.service-card.active .tag {
  color: rgba(255,255,255,0.85);
}

.service-card h3 {
  font-size: 32px;
  font-weight: 500;
  font-family: 'Outfit';
  margin: 0;
}

@media (max-width: 1024px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services {
    grid-template-columns: 1fr;
  }

  .services-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

.iconify,
.iconify svg {
  fill: currentColor !important;
  stroke: currentColor !important;
}

.service-card .icon .iconify {
  font-size: 24px;
  color: #022939;
}

.service-card.active .icon .iconify {
  color: #022939;
}

.logo {
  max-width: 250px;
}

.realizacje {
  padding: 80px 0;
}

.realizacje__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 70px;
}

.realizacje__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto auto;
  gap: 24px;
}

.realizacje__item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #eee;
}

.realizacje__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.realizacje__item:nth-child(1),
.realizacje__item:nth-child(2),
.realizacje__item:nth-child(3) {
  grid-column: span 4;
  grid-row: 1;
  aspect-ratio: 4 / 3;
}

.realizacje__item:nth-child(4) {
  grid-column: span 6;
  grid-row: 2 / span 2;
}

.realizacje__item:nth-child(5) {
  grid-column: 7 / span 3;
  grid-row: 2;
  aspect-ratio: 1 / 1;
}

.realizacje__item:nth-child(6) {
  grid-column: 10 / span 3;
  grid-row: 2;
  aspect-ratio: 1 / 1;
}

.realizacje__item:nth-child(7) {
  grid-column: 7 / span 3;
  grid-row: 3;
  aspect-ratio: 1 / 1;
}

.realizacje__item:nth-child(8) {
  grid-column: 10 / span 3;
  grid-row: 3;
  aspect-ratio: 1 / 1;
}

@media (max-width: 1024px) {
  .realizacje__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .realizacje__item {
    grid-column: span 1 !important;
    grid-row: auto !important;
    aspect-ratio: 4 / 3 !important;
  }
}

@media (max-width: 600px) {
  .realizacje__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .realizacje__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .realizacje__grid {
    grid-template-columns: 1fr;
  }

  .realizacje__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0 40px;
}

.before-after figure {
  margin: 0;
}

.before-after img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.before-after figcaption {
  margin-top: 6px;
  font-size: 14px;
  opacity: 0.7;
}

@media (max-width: 600px) {
  .before-after {
    grid-template-columns: 1fr;
  }
}


.realizacja-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}

.realizacja-modal.is-open {
  display: block;
}

.realizacja-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.realizacja-modal__container {
  position: relative;
  max-width: 1200px;
  height: 90vh;
  margin: 5vh auto;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.realizacja-modal__content {
  height: 100%;
  overflow-y: auto;
  padding: 10px;
}

.realizacja-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  background: none;
  border: 0;
  font-size: 28px;
  cursor: pointer;
}

.realizacja-modal__container {
  position: relative;
  overflow: visible;
}

.realizacja-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
background: rgb(10 12 13 / 87%);
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.realizacja-modal__nav--prev {
  left: -24px;
}

.realizacja-modal__nav--next {
  right: -24px;
}
/* ===== MODAL CONTENT LAYOUT ===== */

.realizacja-modal__content {
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== HEADER ===== */

.realizacja-modal__header {
  margin-bottom: 32px;
}

.realizacja-modal__header h2 {
    font-size: 36px;
    font-weight: 500;
    font-family: 'Outfit';
    text-align: left;
    margin-bottom: 20px;
    color: #022939;
}



.realizacja-modal__description {
    font-size: 17px;
    line-height: 1.7;
    color: #022939;
    font-family: 'Figtree';
}

/* ===== BEFORE / AFTER SLIDER ===== */

.before-after-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px;
  margin: 40px 0;
  background: #000;
}

.before-after-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after__after {
  clip-path: inset(0 0 0 50%);
}

/* RANGE */

.before-after__range {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: ew-resize;
  z-index: 3;
}

.before-after__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 4px;
  height: 100%;
  background: #fff;
  cursor: ew-resize;
}

.before-after__range::-moz-range-thumb {
  width: 4px;
  height: 100%;
  background: #fff;
  border: none;
  cursor: ew-resize;
}

/* ===== GALLERY ===== */

.realizacja-modal__gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.realizacja-modal__gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}

.before-after__labels {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  z-index: 4;
  pointer-events: none;
}

.before-after__labels span {
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.before-after__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  z-index: 4;
  pointer-events: none;
}

.before-after__handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.before-after__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
}

.before-after-slider:hover .before-after__handle::after {
  transform: translate(-50%, -50%) scale(1.1);
}

.realizacja-image-viewer {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.realizacja-image-viewer img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
}


@media (max-width: 768px) {
  .realizacja-modal__gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .realizacja-modal__gallery {
    grid-template-columns: 1fr;
  }
}
.realizacja-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.realizacja-modal.is-open {
  opacity: 1;
  pointer-events: all;
}

.realizacja-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.realizacja-modal.is-open .realizacja-modal__overlay {
  opacity: 1;
}

.realizacja-modal__container {
  position: relative;
  max-width: 1200px;
  margin: 5vh auto;
  background: #fff;
  border-radius: 28px;
  padding: 40px;
  transform: translateY(40px) scale(0.96);
  opacity: 0;
  transition:
    transform 0.45s cubic-bezier(.2,.8,.2,1),
    opacity 0.35s ease;
}

.realizacja-modal.is-open .realizacja-modal__container {
  transform: translateY(0) scale(1);
  opacity: 1;
}

body.modal-open {
  overflow: hidden;
}

.before-after-slider {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

/* LINIA PODZIAŁU */
.before-after__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.4),
    #ffffff,
    rgba(255,255,255,0.4)
  );
  z-index: 4;
  pointer-events: none;
}

/* UCHWYT */
.before-after__handle::after {
  content: "⇆";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: #022939;
  box-shadow:
    0 10px 30px rgba(0,0,0,0.35),
    0 0 0 6px rgba(255,255,255,0.25);
}

/* RANGE – WIĘKSZY OBSZAR INTERAKCJI */
.before-after__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 6;
}

/* HOVER / TOUCH FEEDBACK */
.before-after-slider:hover .before-after__handle::after {
  transform: translate(-50%, -50%) scale(1.08);
}

/* LABELS (PRZED / PO) – LEKKO PODBITA CZYTELNOŚĆ */
.before-after__labels span {
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

.before-after-slider {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

/* LINIA PODZIAŁU */
.before-after__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.25),
    #ffffff,
    rgba(255,255,255,0.25)
  );
  z-index: 4;
  pointer-events: none;
}

/* UCHWYT */
.before-after__handle::after {
  content: "⇆";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: #022939;
  box-shadow:
    0 14px 35px rgba(0,0,0,0.35),
    0 0 0 8px rgba(255,255,255,0.22);
}

/* RANGE – CAŁY OBSZAR INTERAKCJI */
.before-after__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 6;
}

/* HOVER / TOUCH FEEDBACK */
.before-after-slider:hover .before-after__handle::after {
  transform: translate(-50%, -50%) scale(1.08);
}

/* LABELS */
.before-after__labels {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  z-index: 5;
  pointer-events: none;
}

.before-after__labels span {
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.04em;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

@media (max-width: 768px) {

  .realizacja-modal__nav {
    top: auto;
    bottom: 16px;
    transform: none;
    width: 44px;
    height: 44px;
    font-size: 26px;
    background: rgba(10,12,13,0.9);
  }

  .realizacja-modal__nav--prev {
    left: 16px;
  }

  .realizacja-modal__nav--next {
    right: 16px;
  }
}


/* ===============================
   REALIZACJE – PODSTRONA
================================ */

.realizacje--page .realizacje__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* KAŻDA REALIZACJA JAKO KARTA */
.realizacje--page article.realizacja {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* GŁÓWNE ZDJĘCIE */
.realizacje--page .realizacje__item {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
}

/* RESET GRIDU HOMEPAGE */
.realizacje--page .realizacje__item:nth-child(n) {
  grid-column: auto !important;
  grid-row: auto !important;
}

/* PRZED / PO */
.realizacje--page .before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.realizacje--page .before-after img {
  border-radius: 12px;
}

.realizacje--page .before-after figcaption {
  margin-top: 6px;
  font-size: 13px;
  color: #6b7280;
  text-align: center;
}

/* ===============================
   RWD
================================ */

@media (max-width: 1024px) {
  .realizacje--page .realizacje__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .realizacje--page .realizacje__grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   REALIZACJE – HOVER ICON
================================ */

.realizacje__item {
  position: relative;
  cursor: pointer;
}

.realizacje__item::after {
 content: "⤢";

  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: 300;
  color: #fff;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}

.realizacje__item:hover::after {
  opacity: 1;
  transform: scale(1);
}

/* brak hovera na touch */
@media (hover: none) {
  .realizacje__item::after {
    display: none;
  }
}

.buttonwszystkierealizacje {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 36px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;

  background: linear-gradient(
    135deg,
    #006FFF 0%,
    #2F7BFF 35%,
    #00FFCC 100%
  );

  box-shadow: 0 20px 50px rgba(0,111,255,0.25);
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}


.buttonwszystkierealizacje:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 70px rgba(0,111,255,0.35);
}

.buttonwszystkierealizacje::before {
  content: "";
  width: 22px;
  height: 22px;
  display: inline-block;
  background: url("../assets/img/rocket.svg") no-repeat center / contain;
}




.pricing {
  padding: 100px 0;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}



.pricing-card {
  background: #f8fbff;
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.04);
}

.pricing-card h3 {
    font-size: 16px;
    font-weight: 500;
    color: #022939;
    margin-bottom: 28px;
    line-height: 1.5;
    font-family: 'Outfit';
}



.pricing-price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 6px;
}

.pricing-price .price {
  font-size: 42px;
  font-weight: 600;
  color: #2f6bff;
}

.pricing-price .currency {
  font-size: 14px;
  font-weight: 500;
  color: #2f6bff;
}



.pricing-card--outline {
  background: #fff;
  border: 0px solid #2f6bff;
}



.pricing-card--dark {
  background: #0b2a3b;
}

.pricing-card--dark h3,
.pricing-card--dark .price,
.pricing-card--dark .currency {
  color: #fff;
}



@media (max-width: 1200px) {
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .pricing__grid {
    grid-template-columns: 1fr;
  }
}



:root {
  --gradient-main: linear-gradient(90deg, #00FFCC 0%, #006FFF 100%);
}


.pricing-card--normal .price {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.pricing-card--outline {
  position: relative;
  background: #fff;
}

.pricing-card--outline::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 24px;
  background: var(--gradient-main);
  pointer-events: none;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.pricing-card--outline .price {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-card--dark {
  background: #0c2a3d;
}

.pricing-card--dark h3,
.pricing-card--dark .currency {
  color: #fff;
}

.pricing-card--dark .price {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-card .price {
  font-size: 42px;
  font-weight: 600;
}

.pricing-card .currency {
  font-size: 14px;
  margin-left: 4px;
  font-weight: 500;
}

.pricing-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 111, 255, 0.15);
}


.pricing-card--outline:hover::before {
  filter: brightness(1.1);
}

/* lekki akcent na cenie */
.pricing-card:hover .price {
  filter: brightness(1.1);
}


@media (hover: none) {
  .pricing-card:hover {
    transform: none;
    box-shadow: none;
  }
}

img.effect1
 {
    position: absolute;
    top: 315px;
    left: 0;
    height: auto;
}
img.effect2 {
position: absolute;
    top: 315px;
    right: 10%;
    height: auto;
}
img.effect3

 {
    position: absolute;
    top: 520px;
    right: 20%;
    height: auto;
}
img.effect4 {
    position: absolute;
    top: 450px;
    right: 0;
    height: auto;
}
@media (max-width: 768px) {
    .effect1,
    .effect2,
    .effect3,
    .effect4 {
        display: none;
    }
}
.before-after-slider,
.before-after__range {
    pointer-events: auto;
    touch-action: pan-x;
}