/*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*/
:root {
  --white-text: #f6f9ff;
  --grey-text: #404040;
  --black-text: #000000;
  --orange: #f17a0a;

  --hero-bg: #fe9554;
  --pill-bg: #ffffff;
  --pill-text: #424242;
  --dark-pill: #424242;
}
html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  font-family: "Inter";
}
* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;

  display: flex;
  align-items: center;
  gap: 16px;

  padding: 18px 28px;
}

.brand {
  z-index: 3;
}
.brand img {
  height: 45px;
  width: auto;
}

.nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  align-items: center;
  gap: 14px;
}

.right-section {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 18px;
  border-radius: 999px;

  background: var(--pill-bg);
  color: var(--pill-text);
  text-decoration: none;

  font-weight: 800;
  letter-spacing: 0.4px;
  font-size: 15px;

  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.nav-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
}

.nav-pill.is-active {
  outline: 2px solid rgba(255, 255, 255, 0.9);
}

.nav-link {
  text-decoration: none;
  color: rgba(30, 30, 30, 0.9);

  font-weight: 800;
  letter-spacing: 0.5px;
  font-size: 15px;

  padding: 10px 8px;
  transition: opacity 0.15s ease;
}

.nav-link:hover {
  opacity: 0.75;
}

.nav-pill--dark {
  background: var(--dark-pill);
  color: #fff;
}

.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  cursor: pointer;

  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;

  padding: 10px;
  z-index: 4;
}

.menu-toggle__bar {
  width: 22px;
  height: 2px;
  background: rgba(30, 30, 30, 0.9);
  border-radius: 999px;

  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 12px;
  right: 12px;

  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);

  padding: 12px;
  z-index: 2;

  opacity: 0;
  transform: translateY(-12px) scale(0.97);
  pointer-events: none;

  transition:
    opacity 0.25s ease,
    transform 0.25s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.mobile-menu__nav {
  display: grid;
  gap: 8px;
}

.mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 12px 14px;
  border-radius: 14px;

  text-decoration: none;
  color: rgba(20, 20, 20, 0.92);
  font-weight: 800;
  letter-spacing: 0.4px;

  background: rgba(254, 149, 84, 0.1);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.mobile-link:hover {
  transform: translateY(-1px);
  background: rgba(254, 149, 84, 0.16);
}

.mobile-link.is-active {
  outline: 2px solid rgba(254, 149, 84, 0.55);
}

.mobile-link--shop {
  background: rgba(20, 20, 20, 0.92);
  color: #fff;
}

.mobile-link--shop:hover {
  background: rgba(20, 20, 20, 0.85);
}

.topbar.is-open .mobile-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.topbar.is-open .mobile-link {
  opacity: 1;
  transform: translateY(0);
}

.topbar.is-open .mobile-link:nth-child(1) {
  transition-delay: 0.05s;
}
.topbar.is-open .mobile-link:nth-child(2) {
  transition-delay: 0.08s;
}
.topbar.is-open .mobile-link:nth-child(3) {
  transition-delay: 0.11s;
}
.topbar.is-open .mobile-link:nth-child(4) {
  transition-delay: 0.14s;
}
.topbar.is-open .mobile-link:nth-child(5) {
  transition-delay: 0.17s;
}
.topbar.is-open .mobile-link:nth-child(6) {
  transition-delay: 0.2s;
}
.topbar.is-open .mobile-link:nth-child(7) {
  transition-delay: 0.23s;
}

.topbar.is-open .menu-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.topbar.is-open .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.topbar.is-open .menu-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1080px) {
  .topbar {
    position: sticky;
    background: #fe9554;
    padding: 14px 20px 0px 19px;
  }

  .nav--desktop {
    display: none !important;
  }

  .menu-toggle {
    display: flex;
  }

  .brand img {
    height: 40px;
  }
}

/*HERO*/
.hero {
  min-height: 100vh;
  background: var(--hero-bg);
  position: relative;
  overflow: hidden;
}
@media (min-width: 2560px) {
  .hero {
    min-height: 60vh;
  }
}

@media (min-width: 3840px) {
  .hero {
    min-height: 54vh;
  }
}
@media (min-width: 1024px) {
  .hero {
    min-height: 97vh;
  }
}
@media (max-width: 1100px) and (min-width: 900px) {
  .hero__inner {
    padding-top: 72px;
    padding-bottom: 40px;
    align-items: flex-start;
  }

  .hero__title--dark {
    font-size: clamp(48px, 6.2vw, 78px);
    white-space: normal;
    line-height: 1;
  }

  .hero__title--light {
    font-size: clamp(40px, 5.2vw, 64px);
    white-space: normal;
    line-height: 1.05;
  }

  .hero__desc {
    font-size: 18px;
    max-width: 520px;
  }

  .hero__left {
    position: relative;
    z-index: 2;
  }
}
.hero__inner {
  margin: 0 100px;

  padding-top: 100px;
  padding-bottom: 60px;

  display: flex;
  align-items: center;
}

.hero__left {
  flex: 1.08;
  min-width: 320px;
}

.hero__title {
  margin: 0 0 18px;
  line-height: 0.95;
  letter-spacing: -1px;
}

.hero__title--dark {
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 800;
  color: #4a4a4a;
  white-space: nowrap;

  opacity: 0;
  transform: translateX(-120px);
  animation: textSlideIn 0.9s ease-out 0.1s forwards;
}

.hero__title--light {
  font-size: clamp(44px, 6vw, 90px);
  font-weight: 800;
  color: var(--white-text);
  white-space: nowrap;

  opacity: 0;
  transform: translateX(-120px);
  animation: textSlideIn 0.9s ease-out 0.45s forwards;
}

.hero__desc {
  margin: 0 0 26px;
  max-width: 540px;

  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  line-height: 1.45;
  font-size: 20px;

  opacity: 0;
  transform: translateX(-120px);
  animation: textSlideIn 0.9s ease-out 0.8s forwards;
}

@keyframes textSlideIn {
  from {
    opacity: 0;
    transform: translateX(-120px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 12px 18px;
  border-radius: 999px;

  background: #ffffff;
  color: #2a2a2a;
  text-decoration: none;

  font-weight: 900;
  letter-spacing: 0.5px;
  font-size: 15px;

  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.hero__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.16);
}

.hero__ctaIcon {
  width: 34px;
  height: 34px;
  border-radius: 999px;

  display: grid;
  place-items: center;

  background: #404040;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
}

.arrow-icon {
  font-size: 15px;
  width: 14px;
  height: auto;
}

/*HERO RIGHT*/
.hero__right {
  flex: 0.92;
  position: relative;

  height: min(538px, 60vh);
  min-height: 420px;
}

.hero__bg {
  position: absolute;

  right: -90px;
  top: -100px;

  height: 165%;
  width: auto;

  object-fit: contain;
  opacity: 0.95;

  pointer-events: none;
  user-select: none;

  z-index: 1;
}

.hero__camera {
  position: absolute;
  left: 40px;
  top: 60px;

  height: 130%;
  width: auto;
  object-fit: contain;

  pointer-events: none;
  user-select: none;

  z-index: 3;

  opacity: 0;
  transform: translateY(180px) scale(0.7);
  animation: cameraReveal 1.2s ease-out forwards;
}

@keyframes cameraReveal {
  0% {
    opacity: 0;
    transform: translateY(180px) scale(0.7);
  }
  60% {
    opacity: 1;
    transform: translateY(-10px) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 1400px) {
  .hero__bg {
    height: 170%;
  }
  .hero__camera {
    top: 85px;
  }
}
@media (max-width: 1300px) {
  .hero__bg {
    height: 180%;
  }
  .hero__camera {
    top: 105px;
  }
}
@media (max-width: 1024px) {
  .hero__bg {
    display: none;
  }
  .hero__camera {
    top: 136px;
  }
}
@media (max-width: 900px) {
  .hero__inner {
    padding-top: 84px;
    padding-bottom: 48px;
    align-items: flex-start;
    display: block;
  }

  .hero__left {
    flex: 1;
    min-width: 0;
  }

  .hero__title--dark,
  .hero__title--light {
    white-space: normal;
    word-break: break-word;
    line-height: 1.02;
  }

  .hero__desc {
    max-width: 100%;
    font-size: 18px;
  }
  .hero__camera {
    position: absolute;

    right: 0;
    top: 20px;
    height: auto;

    right: 0;
    bottom: 0;

    width: min(380px, 70vw);
    max-width: 420px;

    z-index: 3;
  }
}

@media (max-width: 600px) {
  .hero__inner {
    padding-top: 72px;
    padding-bottom: 40px;
    gap: 18px;
  }

  .hero__title {
    letter-spacing: -0.5px;
  }

  .hero__title--dark {
    font-size: clamp(34px, 10vw, 56px);
  }

  .hero__title--light {
    font-size: clamp(30px, 9vw, 48px);
  }

  .hero__desc {
    font-size: 16px;
    line-height: 1.5;
  }

  .hero__cta {
    width: 100%;
    justify-content: space-between;
    padding: 12px 14px;
    font-size: 14px;
  }

  .hero__ctaIcon {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }
}
@media (max-width: 520px) {
  .hero__inner {
    margin: 0;
    padding-left: 18px;
    padding-right: 18px;

    padding-top: 62px;
    padding-bottom: 22px;
  }

  .hero {
    min-height: auto;
  }

  .hero__left {
    max-width: 100%;
  }
  .hero__camera {
    width: min(320px, 82vw);
    bottom: -12px;
    right: -6px;
  }
}

@media (max-width: 380px) {
  .hero__title--dark {
    font-size: 32px;
  }
  .hero__title--light {
    font-size: 28px;
  }
  .hero__right {
    height: 500px;
  }
}
@media (max-width: 320px) {
  .hero__right {
    height: 475px;
  }
}

/*O NAS*/
.about-cut {
  position: relative;
  margin-top: -220px;
  z-index: 20;
}
@media (max-width: 1600px) and (min-width: 1400px) {
  .about-cut {
    margin-top: -80px;
  }
}
.about-cut__inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 0;
  overflow-x: clip;
  overflow-y: visible;
}

.about-cut__left {
  position: relative;
  background: #ffffff;

  padding: 84px 48px 120px 90px;
}

.about-cut__imageWrap {
  position: absolute;
  z-index: 4;

  width: auto;
  height: 470px;

  top: -110px;
  transform: translateX(125%);
}

.about-cut__imageWrap img {
  width: auto;
  height: 100%;
  object-fit: fill;
}

.about-cut__waves {
  position: absolute;
  left: -5px;
  bottom: -33px;
  width: 600px;
  height: auto;

  z-index: 1;
  pointer-events: none;
  user-select: none;

  opacity: 0;

  -webkit-mask-image: linear-gradient(to right, black 0%, black 100%);
  mask-image: linear-gradient(to right, black 0%, black 100%);
  -webkit-mask-size: 0% 100%;
  mask-size: 0% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.about-cut__waves.animate {
  animation: wavesReveal 1s ease-out forwards;
}

@keyframes wavesReveal {
  0% {
    opacity: 0;
    -webkit-mask-size: 0% 100%;
    mask-size: 0% 100%;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
}

.about-cut__scribble {
  position: absolute;
  left: 330px;
  top: -50px;
  width: 320px;
  height: auto;

  z-index: 5;
  pointer-events: none;
  user-select: none;

  opacity: 0;

  -webkit-mask-image: linear-gradient(to right, black 0%, black 100%);
  mask-image: linear-gradient(to right, black 0%, black 100%);
  -webkit-mask-size: 0% 100%;
  mask-size: 0% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.about-cut__scribble.animate {
  animation: wavesReveal 1s ease-out forwards;
  animation-delay: 0.8s;
}

.about-cut__right {
  background: #3c3c3c;
  padding: 86px 70px 80px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  min-height: 420px;
}

.about-cut__overline {
  margin: 0 0 18px;
  color: #f17a0a;
  font-weight: 100;
  font-size: 50px;
  letter-spacing: 0.2px;
}

.about-cut__right h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 50px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.about-cut__desc {
  margin: 0;
  max-width: 520px;

  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
  margin-bottom: 50px;
}
@media (max-width: 1440px) {
  .about-cut__imageWrap {
    height: 75%;
    top: -80px;
    transform: translateX(310px);
  }
  .about-cut__scribble {
    left: 200px;
  }
}
@media (max-width: 1250px) {
  .about-cut__imageWrap {
    height: 75%;
    top: -80px;
    transform: translateX(200px);
  }
  .about-cut__scribble {
    left: 100px;
  }
}

@media (max-width: 1024px) {
  .about-cut__left {
    padding: 60px 40px 100px 60px;
  }

  .about-cut__right {
    padding: 60px 40px;
  }

  .about-cut__imageWrap {
    height: 360px;
    top: -80px;
    transform: translateX(123px);
  }

  .about-cut__overline,
  .about-cut__right h2 {
    font-size: 42px;
  }
  .about-cut__scribble {
    left: -20px;
  }
}
@media (max-width: 768px) {
  .about-cut__inner {
    grid-template-columns: 1fr; /* jedna kolumna */
  }

  .about-cut__left {
    padding: 0px 0px 0px;
    min-height: auto;
  }

  .about-cut__right {
    padding: 40px 20px 60px;
  }

  /* Zdjęcie CEO nad tekstem */
  .about-cut__imageWrap {
    position: relative;
    top: 0;
    transform: translateX(20%);
    height: 280px;
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
  }

  .about-cut__imageWrap img {
    height: 100%;
    width: auto;
  }

  /* dekoracje mniejsze */
  .about-cut__waves {
    width: 320px;
    bottom: -20px;
  }

  .about-cut__scribble {
    left: 65%;
    transform: translateX(18%);
    width: 200px;
    top: 0px;
  }

  .about-cut__overline {
    font-size: 34px;
  }

  .about-cut__right h2 {
    font-size: 34px;
  }

  .about-cut__desc {
    font-size: 16px;
  }
}
@media (max-width: 425px) {
  .about-cut__imageWrap {
    height: 240px;
  }

  .about-cut__overline,
  .about-cut__right h2 {
    font-size: 28px;
  }

  .about-cut__desc {
    font-size: 15px;
    line-height: 1.5;
  }
  .about-cut__waves {
    width: 245px;
    bottom: -15px;
  }

  .about-cut__scribble {
    left: 85%;
    transform: translateX(-50%);
    width: 200px;
    top: 0px;
  }
  .about-cut__imageWrap {
    transform: translateX(15%);
    top: 0px;
  }
}
@media (max-width: 375px) {
  .about-cut__waves {
    width: 185px;
  }
  .about-cut__imageWrap {
    transform: translateX(15%);
  }
}
/*NASZE USŁUGI*/
.services {
  background: #ffffff;
}

.services__inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.services__left {
  background: #ffffff;
  padding: 84px 48px 120px 90px;
  border: 2px solid rgba(241, 122, 10, 0.55);
}

.services__kicker {
  margin: 0 0 34px;
  font-weight: 100;
  letter-spacing: 2px;
  font-size: 50px;
  color: #404040;
}

.services__dot {
  color: #404040;
}

.services__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.service {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
}

.service__num {
  font-weight: 900;
  font-size: 30px;
  color: #000000;
  transform: translateY(2px);
}

.service__title {
  color: #000000;
  line-height: 1.25;
}

.service__title strong {
  font-weight: 900;
  letter-spacing: 0.3px;
  font-size: 35px;
}

.service__title span {
  font-weight: 300;
  color: #000000;
  font-size: 18px;
  margin-left: 6px;
}

.services__cta {
  margin-top: 46px;
  display: inline-flex;
  align-items: center;
  gap: 25px;
  text-decoration: none;
  color: #111;
  font-weight: 900;
  letter-spacing: 0.4px;
  font-size: 18px;

  background: #fff;
  border: 10px solid #fc9352;
  padding: 14px 18px;
  border-radius: 999px;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    filter 0.35s ease;
}

.services__cta:hover {
  transform: scale(1.04) rotate(1.5deg);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.services__ctaIcon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #fcf9f5;
  font-size: 16px;
  font-weight: 900;
}

.Arrow-icon2 {
  filter: invert(100%);
  width: 14px;
  height: auto;
}

.services__right {
  position: relative;
  background: #ffffff;
  overflow: hidden;
  min-height: 520px;
}

.services__arc,
.services__photo,
.services__ring,
.services__logo {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.services__arc {
  position: absolute;
  top: -50px;
  left: 155px;
  width: 650px;
  height: auto;
  z-index: 4;

  pointer-events: none;
  user-select: none;

  opacity: 0;

  -webkit-mask-image: linear-gradient(to right, black 0%, black 100%);
  mask-image: linear-gradient(to right, black 0%, black 100%);
  -webkit-mask-size: 0% 100%;
  mask-size: 0% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.services__arc.animate {
  animation: arcReveal 1s ease-out forwards;
}

@keyframes arcReveal {
  0% {
    opacity: 0;
    -webkit-mask-size: 0% 100%;
    mask-size: 0% 100%;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
}

.services__photo {
  left: 0;
  bottom: -132px;
  width: min(600px, 92%);
  height: auto;
  z-index: 5;
}

.services__ring {
  right: 155px;
  top: 265px;
  width: 220px;
  height: auto;
  z-index: 4;
}

.services__logo {
  right: 230px;
  bottom: 40px;
  width: 160px;
  height: auto;
  z-index: 4;
}

.services__bar {
  position: absolute;
  pointer-events: none;
  user-select: none;
  left: 0;
  right: 0;
  bottom: 80px;
  height: 145px;
  z-index: 1;

  background: #fc9352;
}
@media (max-width: 1024px) {
  .services__inner {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .services__left {
    padding: 64px 32px 90px 56px;
  }

  .services__kicker {
    font-size: 40px;
    margin-bottom: 26px;
  }

  .service__title strong {
    font-size: 30px;
  }

  .service__title span {
    font-size: 16px;
  }

  .services__right {
    min-height: 460px;
  }

  .services__photo {
    width: min(520px, 92%);
    bottom: -110px;
  }

  .services__ring {
    right: 90px;
    top: 240px;
    width: 190px;
  }

  .services__logo {
    right: 160px;
    bottom: 34px;
    width: 140px;
  }

  .services__arc {
    left: 120px;
    width: 560px;
  }
}

/* <= 900px: jedna kolumna (tekst nad grafiką) */
@media (max-width: 900px) {
  .services__inner {
    grid-template-columns: 1fr;
  }

  .services__left {
    padding: 56px 20px 70px;
  }

  .services__kicker {
    font-size: 36px;
  }

  .services__cta {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
  }

  /* prawa strona jako banner */
  .services__right {
    min-height: 420px;
  }

  .services__bar {
    bottom: 60px;
    height: 130px;
  }

  /* obrazki centralniej, żeby nie uciekały */
  .services__photo {
    left: 30%;
    transform: translateX(-50%);
    width: min(520px, 92%);
    bottom: -115px;
  }

  .services__ring {
    right: 125px;
    top: 80px;
    width: 170px;
  }

  .services__logo {
    right: 180px;
    bottom: 26px;
    width: 130px;
  }

  .services__arc {
    left: 50%;
    transform: translateX(-10%);
    width: 400px;
    top: -48px;
  }
}
@media (max-width: 710px) {
  .services__arc {
    left: 50%;
    transform: translateX(-10%);
    width: 285px;
    top: -25px;
  }
  .services__ring {
    right: 0px;
    top: 80px;
    width: 170px;
  }

  .services__logo {
    right: 40px;
    bottom: 26px;
    width: 130px;
  }
}
/* Mobile <= 520px: mniejsze typografie + niższy banner */
@media (max-width: 425px) {
  .services__left {
    padding: 46px 18px 62px;
  }

  .services__kicker {
    font-size: 30px;
    margin-bottom: 22px;
    letter-spacing: 1.2px;
  }

  .services__list {
    gap: 20px;
  }

  .service__num {
    font-size: 24px;
  }

  .service__title strong {
    font-size: 24px;
  }

  .service__title span {
    font-size: 15px;
    margin-left: 0;
    display: block; /* lepsze łamanie na małych */
    margin-top: 6px;
    line-height: 1.35;
  }

  .services__cta {
    font-size: 16px;
    padding: 12px 14px;
    border-width: 8px;
  }

  .services__right {
    min-height: 360px;
  }

  .services__bar {
    bottom: 48px;
    height: 110px;
  }

  .services__photo {
    width: min(430px, 94%);
    bottom: -95px;
  }

  .services__ring {
    width: 140px;
    top: 75px;
    right: -15px;
  }

  .services__logo {
    width: 115px;
    right: 30px;
    bottom: 18px;
  }
  .services__arc {
    left: 35%;
    transform: translateX(-10%);
    width: 300px;
    top: -35px;
  }
}

/* Bardzo małe telefony <= 380px */
@media (max-width: 380px) {
  .services__kicker {
    font-size: 26px;
  }

  .service__title strong {
    font-size: 22px;
  }

  .services__right {
    min-height: 320px;
  }

  .services__photo {
    width: min(380px, 96%);
    bottom: -85px;
  }

  .services__ring {
    display: none;
  }

  .services__logo {
    width: 105px;
  }
}
@media (max-width: 320px) {
  .services__arc {
    width: 250px;
    left: 28%;
    top: -20px;
  }
}
/*Portfolio*/
.portfolio {
  background: #ffffff;
  padding: 70px 0 90px;
}

.portfolio__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}

.portfolio__header {
  text-align: center;
  margin-bottom: 40px;
}

.portfolio__title {
  margin: 0 0 10px;
  font-size: clamp(30px, 6vw, 84px);
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #404040;
  line-height: 1;

  opacity: 0;
  transform: translateY(80px) scale(0.3);
}

.portfolio__title.animate {
  animation: autoShowAnimation 0.9s ease-out forwards;
}
@keyframes autoShowAnimation {
  from {
    opacity: 0;
    transform: translateY(80px) scale(0.3);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.portfolio__subtitle {
  margin: 0;
  font-size: clamp(14px, 1.2vw, 20px);
  line-height: 1.45;
  color: #000000;
  font-weight: 500;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

.portfolio__card {
  border-radius: 44px;
  overflow: hidden;
  display: block;
  background: #f2f2f2;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
  aspect-ratio: 9 / 16;
}

.portfolio__card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.14);
}

.portfolio__card video,
.portfolio__card .phone-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 600px) {
  .portfolio__grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .portfolio__card {
    width: min(85vw, 280px);
  }
}

/*Kafelki*/
.kafelki {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
}

.bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 900;
  font-size: clamp(25px, 10vw, 140px);
  letter-spacing: 2px;

  color: #000;
  opacity: 0.05;
  pointer-events: none;

  user-select: none;
  z-index: 0;
}

#physicsBox {
  position: relative;
  height: 420px;
  border: 2px solid #dedede;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}
#physicsBox canvas {
  display: block;
}
/*Opinie*/
.testimonials {
  padding: 64px 20px;
  background: #fff;
}

.testimonials__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials__title {
  text-align: center;
  font-weight: 800;
  font-size: clamp(34px, 4vw, 52px);
  margin: 0 0 42px;
  color: #f17a0a;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.quote-card {
  position: relative;
  background: #3f3f3f;
  border-radius: 18px;
  padding: 70px 75px 22px;
  min-height: 280px;
}

.quote-card__mark {
  position: absolute;
  left: 20px;
  top: -14px;
  font-size: 92px;
  font-weight: 900;
  color: #f07a00;
  line-height: 1;
  letter-spacing: -6px;
  pointer-events: none;
  user-select: none;
}

.quote-card__text {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.55;
  max-width: 92%;
}

.quote-card__meta {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(13px);
}

.testimonials__carousel {
  position: relative;
  width: 100%;
}

.t-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 28px) / 2);
  gap: 28px;

  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 0;

  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.t-track::-webkit-scrollbar {
  display: none;
}

.t-slide {
  scroll-snap-align: start;
}

.t-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;

  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;

  background: #f07a00;
  color: #fff;

  display: grid;
  place-items: center;
}
.t-nav i {
  font-size: 18px;
}

.t-nav--prev {
  left: -80px;
}
.t-nav--next {
  right: -80px;
}

.t-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}
.t-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.18);
}
.t-dot.is-active {
  background: #f07a00;
}

.testimonials__carousel {
  position: relative;
  overflow: visible;
}

.t-nav--prev {
  left: -80px;
}

.t-nav--next {
  right: -80px;
}

@media (max-width: 1024px) {
  .t-track {
    grid-auto-columns: 100%;
  }

  .t-nav--prev {
    left: -30px;
  }

  .t-nav--next {
    right: -30px;
  }

  .quote-card {
    padding: 60px 75px 24px;
  }
}

@media (max-width: 768px) {
  .t-nav--prev {
    left: 12px;
  }

  .t-nav--next {
    right: 12px;
  }

  .t-nav {
    width: 44px;
    height: 44px;
  }

  .quote-card {
    padding: 50px 60px 22px;
  }

  .quote-card__text {
    font-size: 16px;
  }
}

@media (max-width: 520px) {
  .t-nav {
    width: 38px;
    height: 38px;
  }

  .t-nav i {
    font-size: 14px;
  }

  .quote-card {
    padding: 44px 55px 20px;
  }

  .quote-card__text {
    font-size: 15px;
    line-height: 1.45;
  }

  .quote-card__mark {
    font-size: 70px;
    left: 14px;
    top: -8px;
  }
}

.testimonials__inner {
  position: relative;
}

.t-nav {
  z-index: 50;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.t-nav--prev,
.t-nav--next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.t-nav--prev {
  left: 14px;
}

.t-nav--next {
  right: 14px;
}

/*SLIDER*/
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.slider {
  position: relative;
  overflow: hidden;
  background: #5a5a5a;
  padding: 24px 0;
}

.slider::before,
.slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 220px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.slider::before {
  left: 0;
  background: linear-gradient(to left, rgba(90, 90, 90, 0), #5a5a5a);
}
.slider::after {
  right: 0;
  background: linear-gradient(to right, rgba(90, 90, 90, 0), #5a5a5a);
}

.track {
  display: flex;
  width: max-content;
  animation: marquee 45s linear infinite;
  will-change: transform;
}

.slider:hover .track {
  animation-play-state: paused;
}

.list {
  display: flex;
  align-items: center;
  gap: 70px;
  padding-left: 50px;
}

.item {
  flex: 0 0 auto;
  transition:
    transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 0.35s ease,
    opacity 0.35s ease;
  will-change: transform, filter, opacity;
}

.slider:has(.item:hover) .item {
  filter: blur(1px);
  opacity: 0.4;
}

.slider:has(.item:hover) .item:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-14px) scale(1.08);
  z-index: 5;
}

.item img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
/*FAQ*/
.faq {
  padding: 70px 16px;
  background: #fff;
  color: #111;
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
}

.faq__wrap {
  width: min(980px, 100%);
  margin: 0 auto;
  position: relative;
}

.faq__title {
  margin: 0 0 22px;
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #424242;
}

.faq__stamp {
  position: absolute;
  right: -160px;
  top: -60px;
  width: 260px;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.faq__list {
  display: grid;
  gap: 14px;
  padding-top: 10px;
}

.faq__item {
  border: 1.5px solid #ff7a00;
  border-radius: 999px;
  background: #fff;
  overflow: hidden;
}

.faq__q {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 16px 16px 22px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.faq__qtext {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
  color: #111;
}

.faq__icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #ff7a00;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  position: relative;
}
.faq__icon i {
  color: #000;
  font-size: 16px;
  transition: transform 0.25s ease;
}

.faq__item.is-open .faq__icon i {
  transform: rotate(180deg);
}

.faq__a {
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease;
}

.faq__aInner {
  padding: 0 22px 18px 22px;
  font-size: 14px;
  line-height: 1.45;
  color: #333;
}

.faq__item.is-open {
  border-radius: 28px;
}

.faq__item.is-open .faq__a {
  max-height: 220px;
  opacity: 1;
}

.faq__item.is-open .faq__icon::before {
  transform: rotate(-135deg);
}

@media (max-width: 520px) {
  .faq__stamp {
    width: 120px;
  }
  .faq__q {
    padding: 14px 14px 14px 16px;
  }
  .faq__qtext {
    font-size: 13px;
  }
  .faq__aInner {
    padding: 0 16px 16px;
  }
}
@media (max-width: 1150px) {
  .faq__stamp {
    display: none;
  }
}
/*nieaktualne*/
/*  loader
.loader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: #fc9352;
  z-index: 9999;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}

.loader__center {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.loader.is-hiding {
  opacity: 0;
  pointer-events: none;
}

.loader__center svg {
  width: min(320px, 70vw);
  height: auto;
  display: block;
}

svg path {
  fill: transparent;
  stroke: #000000;
  stroke-width: 0.1;
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: loader 2s ease-in-out 1 forwards;
}

@keyframes loader {
  0% {
    stroke-dashoffset: 50;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
*/
/*Przycisk o nas */
.about-cut__cta {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;

  padding: 12px 20px;
  border-radius: 999px;

  background: #ffffff;
  color: #2a2a2a;

  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-decoration: none;

  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.about-cut__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.about-cut__cta i {
  transition: transform 0.25s ease;
}

.about-cut__cta:hover i {
  transform: translateX(4px);
}
