/*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 - MENU*/
.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;
  text-wrap-mode: nowrap;
}

.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;
    padding: 14px 20px 0px 19px;
  }

  .nav--desktop {
    display: none !important;
  }

  .menu-toggle {
    display: flex;
  }

  .brand img {
    height: 40px;
  }
}

/*Pakiety title - desc*/
.packages-hero {
  background: #fff;
  padding: 70px 20px 40px;
}

.packages-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.packages-hero__star {
  width: 34px;
  height: auto;
  position: absolute;
  top: -30px;
  transform: translateX(320px);
}

.packages-hero__title {
  margin-top: 50px;
  font-size: clamp(46px, 6vw, 82px);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #404040;
  line-height: 1;
}

.packages-hero__subtitle {
  font-size: 18px;
  color: #111;
  margin-top: -30px;
}

.packages-hero__scribble {
  width: min(260px, 55vw);
  height: auto;
  position: absolute;
  top: 90px;
  transform: translateX(280px);
  z-index: 4;
}

@media (max-width: 1024px) {
  .packages-hero {
    padding: 60px 18px 36px;
  }

  .packages-hero__title {
    margin-top: 40px;
    font-size: clamp(40px, 6vw, 70px);
  }

  .packages-hero__subtitle {
    margin-top: -18px;
    font-size: 17px;
  }

  .packages-hero__star {
    transform: none;
    right: 120px;
    top: -22px;
    width: 30px;
  }

  .packages-hero__scribble {
    transform: none;
    right: 70px;
    top: 78px;
    width: min(230px, 46vw);
  }
}

@media (max-width: 600px) {
  .packages-hero {
    padding: 54px 16px 30px;
  }

  .packages-hero__title {
    margin-top: 30px;
    font-size: clamp(34px, 10vw, 54px);
  }

  .packages-hero__subtitle {
    margin-top: -10px;
    font-size: 15px;
    line-height: 1.35;
  }

  .packages-hero__star {
    right: 22px;
    top: -16px;
    width: 26px;
  }

  .packages-hero__scribble {
    right: 12px;
    top: 62px;
    width: min(170px, 44vw);
    opacity: 0.95;
  }
}

@media (max-width: 380px) {
  .packages-hero__subtitle {
    font-size: 14px;
  }

  .packages-hero__scribble {
    width: min(150px, 46vw);
    top: 58px;
  }
}
/*VIDEO*/
.content-day-2 {
  position: relative;
  padding: 70px 0;
  background: #fff;
}

.content-day-2__wrap {
  width: min(1200px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.cd-card--video {
  flex: 0 0 min(520px, 92vw);
  width: min(520px, 92vw);
}

.cd-video {
  flex: 1;
  display: flex;
  min-height: 0;
}

.cd-video__frame {
  flex: 1;
  display: flex;
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
}

.cd-video__el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-size: cover;
}

/*CONENT DAY CARD*/
.content-day {
  position: relative;
  background: #fff;
  overflow: hidden;
  padding: 30px 0;
}

.content-day__wrap {
  width: min(1350px, 92vw);
  margin: 0 auto;
  display: flex;
  gap: 100px;
  align-items: stretch;
}

.content-day__wave {
  position: absolute;
  pointer-events: none;
  user-select: none;
}
.content-day__wave--left {
  left: 0;
  bottom: 0;
  width: 280px;
}

.cd-card {
  position: relative;
  width: min(520px, 92vw);
  background: #fff;
  border: 2px solid #f07a00;
  padding: 34px 34px 28px;

  display: flex;
  flex-direction: column;
}

.cd-card__title {
  margin: 0;
  text-align: center;
  font-size: 38px;
  letter-spacing: 1px;
  font-weight: 900;
  color: #f07a00;
}

.cd-card__subtitle {
  margin: 10px 0 6px;
  text-align: center;
  font-size: 18px;
}

.cd-card__desc {
  margin: 0 0 18px;
  text-align: center;
  line-height: 1.35;
  font-size: 18px;
}

.cd-card__block {
  margin: 10px 0 18px;
  text-align: center;
}

.cd-card__label {
  margin: 0 0 8px;
  font-size: 18px;
}

.cd-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  text-align: left;
  font-size: 16px;
  line-height: 1.55;
}

.cd-card__band {
  margin: 18px -34px 18px;
  padding: 16px 34px 10px;
  background: #ff995a;
}

.cd-card__prices {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
  line-height: 1.6;
}

.cd-card__addon {
  margin: 10px 0 0;
  text-align: center;
  font-size: 13px;
}

.cd-card__footer {
  text-align: center;
  margin-top: 10px;
}

.cd-card__logi {
  margin: 0 0 48px;
  font-size: 15px;
  line-height: 1.5;
}

.cd-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 20px;
  border-radius: 999px;
  background: #f07a00;
  color: #000;
  font-weight: 800;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.5px;

  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.cd-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.45),
    transparent 70%
  );
  transition: all 0.6s ease;
}

.cd-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(240, 122, 0, 0.35);
  background: linear-gradient(135deg, #ff8c2b, #f07a00);
}

.cd-btn:hover::before {
  left: 120%;
}

.cd-btn__icon {
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.cd-btn:hover .cd-btn__icon {
  transform: translateX(6px) rotate(8deg);
}

.cd-btn__icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #2b2b2b;
  color: #fff;
  font-weight: 900;
}

.content-day__logo {
  position: absolute;
  right: 260px;
  bottom: 35px;
  width: 180px;
  height: auto;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-80px);
  transition:
    transform 1.2s cubic-bezier(0.15, 0.8, 0.2, 1),
    opacity 0.7s ease;
  will-change: transform, opacity;
}

.content-day__logo.show {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1790px) {
  .content-day__logo {
    right: 100px;
  }
}
@media (max-width: 1450px) {
  .content-day__logo {
    right: 0px;
  }
}
@media (max-width: 1350px) {
  .content-day__logo {
    right: -30px;
  }
}
@media (max-width: 1250px) {
  .content-day__wrap {
    flex-direction: column;
    gap: 28px;
    align-items: center;
  }

  .cd-video__el {
    height: 100%;
  }

  .content-day__logo {
    position: static;
    width: 150px;

    display: block;
    margin: 8px 0 0 auto;

    transform: none;
    opacity: 1;
  }

  .content-day__wave--left {
    width: 220px;
    opacity: 0.6;
  }
  .packages-hero__scribble {
    transform: none;
    right: 70px;
    top: 78px;
    width: min(230px, 46vw);
  }
}
@media (max-width: 710px) {
  .packages-hero__scribble {
    transform: none;
    right: -50px;
    top: 78px;
    width: min(230px, 46vw);
  }
}
@media (max-width: 900px) {
  .content-day__wave--left {
    display: none;
  }
}
@media (max-width: 600px) {
  .content-day {
    padding: 22px 0;
  }

  .cd-card,
  .cd-card--video {
    width: min(92vw, 520px);
  }

  .cd-card {
    padding: 22px 18px 18px;
  }

  .cd-card__title {
    font-size: 30px;
  }

  .cd-card__subtitle,
  .cd-card__desc,
  .cd-card__label {
    font-size: 15px;
  }

  .cd-card__desc {
    line-height: 1.4;
  }

  .cd-card__list,
  .cd-card__prices {
    font-size: 14px;
    line-height: 1.5;
  }

  .cd-card__addon {
    font-size: 12px;
  }

  .cd-card__band {
    margin: 14px -18px 14px;
    padding: 12px 18px 9px;
  }

  .cd-btn {
    width: 100%;
    justify-content: center;
  }

  .content-day__logo {
    width: 130px;
  }

  .content-day__wave--left {
    width: 180px;
  }
}

@media (max-width: 380px) {
  .cd-card__title {
    font-size: 28px;
  }

  .cd-card__subtitle,
  .cd-card__label {
    font-size: 14px;
  }

  .cd-card__desc {
    font-size: 14px;
  }

  .cd-card__prices {
    font-size: 13px;
  }
}
/*CARD RIGHT*/
.sm-video-card {
  position: relative;
  width: min(520px, 92vw);
  background: #fff;
  border: 2px solid #f07a00;
  padding: 16px;
  display: flex;
  margin-left: 60px;
}

.sm-video {
  flex: 1;
  display: flex;
  min-height: 0;
}

.sm-video__frame {
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

.sm-video__el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sm-bottom {
  background: #fff;
  padding: 10px 0 90px;
}

.sm-bottom__wrap {
  width: min(1300px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 200px;
  align-items: stretch;
}

.sm-card {
  position: relative;
  width: min(520px, 92vw);
  background: #fff;
  border: 2px solid #f07a00;
  padding: 35px 55px 30px;
}

.sm-card__corner {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 74px;
  height: 74px;
  background: #f07a00;
  border-bottom-left-radius: 999px;
}

.sm-card__title {
  margin: 0 0 14px;
  color: #f07a00;
  font-weight: 900;
  font-size: 40px;
  line-height: 0.95;
  letter-spacing: 0.2px;
  font-style: italic;
  text-transform: none;
}

.sm-card__title-strong {
  display: inline-block;
  font-style: italic;
}

.sm-card__p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.55;
  color: #111;
}

.sm-card__p--small {
  margin-top: 8px;
}

.sm-card__list {
  margin: 0 0 12px 16px;
  padding: 0;
  font-size: 14px;
  line-height: 1.55;
}

.sm-btn {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 18px;
  border-radius: 999px;
  background: #f07a00;
  color: #000;
  font-weight: 800;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.5px;

  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.sm-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.45),
    transparent 70%
  );
  transition: all 0.6s ease;
}

.sm-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(240, 122, 0, 0.35);
  background: linear-gradient(135deg, #ff8c2b, #f07a00);
}

.sm-btn:hover::before {
  left: 120%;
}

.sm-btn__icon {
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.sm-btn:hover .sm-btn__icon {
  transform: translateX(6px) rotate(8deg);
}

.sm-btn__icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #2b2b2b;
  color: #fff;
  font-weight: 900;
}

.arrow-icon {
  font-size: 15px;
  width: 14px;
  height: auto;
}
/* =========================
   SM BOTTOM – RESPONSYWNOŚĆ
   (od 1250px: układ w kolumnie + sm-video-card display:block)
   ========================= */

/* ✅ <= 1250px: przejście na układ 1-kolumnowy */
@media (max-width: 1250px) {
  .sm-bottom__wrap {
    grid-template-columns: 1fr; /* było: auto 1fr auto */
    gap: 28px; /* było: 200px */
    justify-items: center;
  }

  /* video-card ma być block (jak prosiłeś) */
  .sm-video-card {
    display: block;
    margin-left: 0;
    width: min(640px, 92vw);
  }

  .sm-card {
    width: min(640px, 92vw);
  }

  .sm-video__el {
    height: 100%;
  }
}

@media (max-width: 600px) {
  .sm-bottom {
    padding: 10px 0 70px;
  }

  .sm-video-card,
  .sm-card {
    width: min(92vw, 520px);
  }

  .sm-video-card {
    padding: 14px;
  }

  .sm-card {
    padding: 24px 18px 20px;
  }

  .sm-card__corner {
    width: 62px;
    height: 62px;
  }

  .sm-card__title {
    font-size: 32px;
  }

  .sm-card__p {
    font-size: 15px;
  }

  .sm-card__list {
    font-size: 13px;
  }

  .sm-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .sm-card__title {
    font-size: 28px;
  }

  .sm-card__p {
    font-size: 14px;
  }

  .sm-card__list {
    font-size: 12.5px;
  }
}

/*Pakiety*/
.packages {
  position: relative;
  background: #fc9352;
  padding: 10px 30px 80px;
  overflow: hidden;
}

.packages__scribble {
  position: absolute;
  width: 180px;
  opacity: 0.35;
}
.packages__scribble--left {
  left: 60px;
  top: 40px;
}
.packages__scribble--right {
  right: 80px;
  top: 30px;
}

.packages__star {
  position: absolute;
  right: 80px;
  top: 140px;
  width: 120px;
}

.packages__lines {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 180px;
}

.packages__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.packages__title {
  text-align: center;
  font-size: 72px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 60px;
  letter-spacing: 5.2px;
}

.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.package-card {
  background: #f07907;
  border: 3px solid #fff;
  border-radius: 26px;
  padding: 34px 28px 0;
  position: relative;
  display: flex;
  flex-direction: column;
}

.package-card__title {
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 18px;
}

.package-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 70px;
  color: #000;
  font-size: 16px;
  line-height: 1.5;
}

.package-card__list li {
  margin-bottom: 10px;
}

.package-card {
  transition:
    transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 0.35s ease,
    opacity 0.35s ease,
    box-shadow 0.35s ease;
  will-change: transform, filter, opacity;
}

.packages:has(.package-card:hover) .package-card {
  filter: blur(1px);
  opacity: 0.45;
}

.packages:has(.package-card:hover) .package-card:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-12px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

.packages:has(.package-card:hover) .package-card:not(:hover) {
  filter: blur(1px) brightness(0.8);
}

.package-card__price {
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  width: calc(100% - 56px);
  z-index: 2;
}

@media (hover: none) {
  .packages:hover .package-card {
    filter: none;
    opacity: 1;
  }
}

.package-card__price-box {
  background: #3a3a3a;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 26px;
  padding: 16px 22px 18px;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.package-card__price-top {
  color: #f17a0a;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
}

.package-card__price-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.package-card__price-star {
  color: #f17a0a;
  font-size: 18px;
  line-height: 1;
}

.package-card__price-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.2;
}

.package-card__price-text strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 900;
}

/* =========================
   PACKAGES – RESPONSYWNOŚĆ
   (grid 3→2→1 + dekoracje nie nachodzą)
   ========================= */

/* <= 1200px: mniejszy tytuł, 2 kolumny, ciaśniej */
@media (max-width: 1200px) {
  .packages {
    padding: 10px 22px 80px;
  }

  .packages__title {
    font-size: clamp(44px, 6vw, 66px);
    letter-spacing: 3.5px;
    margin-bottom: 46px;
  }

  .packages__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
  }
}

@media (max-width: 900px) {
  .packages {
    padding: 10px 18px 70px;
  }

  .packages__grid {
    grid-template-columns: 1fr;
    gap: 50px;
    justify-items: center;
  }

  .package-card {
    width: min(520px, 92vw);
  }

  .packages__title {
    font-size: clamp(36px, 8vw, 52px);
    letter-spacing: 2.6px;
    margin-bottom: 36px;
  }
}

@media (max-width: 600px) {
  .packages {
    padding: 8px 14px 64px;
  }

  .packages__title {
    font-size: clamp(30px, 9.5vw, 44px);
    letter-spacing: 2px;
    margin-bottom: 28px;
  }

  .package-card {
    padding: 26px 18px 0;
    border-radius: 22px;
  }

  .package-card__title {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .package-card__list {
    font-size: 14px;
    margin-bottom: 64px;
  }

  .package-card__price {
    bottom: -26px;
    width: calc(100% - 36px);
  }

  .package-card__price-box {
    border-radius: 22px;
    padding: 14px 16px 16px;
  }

  .package-card__price-top {
    font-size: 18px;
  }

  .package-card__price-text {
    font-size: 14px;
  }

  .packages__scribble {
    width: 110px;
    opacity: 0.22;
  }

  .packages__star {
    width: 70px;
    top: 86px;
  }

  .packages__lines {
    width: 95px;
  }
}

@media (max-width: 380px) {
  .packages__title {
    letter-spacing: 1.4px;
  }

  .package-card__title {
    font-size: 22px;
  }

  .package-card__list {
    font-size: 13px;
  }

  .package-card__price {
    width: calc(100% - 30px);
  }
}

/*Przerywnik*/
.interlude {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 100px 0 0;
}

.interlude::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 40%;
  background: #fc9352;
  z-index: 0;
}

.interlude__inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 24px;
  min-height: 320px;
}

.interlude__left h1 {
  margin: 0;
  font-weight: 800;
  line-height: 1.05;
  font-size: clamp(28px, 3.2vw, 50px);
  color: #f59a5d;
  transform: translateY(-115%);
}

.upper,
.down {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.65, 0.3, 1);
}

.upper {
  margin-bottom: 20px;
}

.down {
  color: #fff;
}

.interlude.show .upper {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.interlude.show .down {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.interlude__center {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.interlude__woman {
  width: clamp(320px, 45vw, 490px);
  transform: translateY(-150px);
  filter: drop-shadow(0 60px 80px rgba(0, 0, 0, 0.35));
}

.interlude__right {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.interlude__blocks {
  width: min(360px, 52vw);
  transform: translateX(-80px);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.18));
  margin-bottom: 190px;
}
.interlude__inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;

  gap: clamp(10px, 2.2vw, 24px);
}

.interlude__left {
  flex: 1 1 34%;
  min-width: 180px;
}

.interlude__center {
  flex: 0 0 auto;
}

.interlude__right {
  flex: 0 0 auto;
  justify-content: flex-start;
}

.interlude__woman {
  width: clamp(240px, 30vw, 490px);
  transform: translateY(clamp(-150px, -10vw, -90px));
}

.interlude__blocks {
  width: clamp(190px, 22vw, 360px);
  transform: translateX(clamp(-80px, -4vw, -10px));
  margin-bottom: clamp(90px, 10vw, 190px);
}

@media (max-width: 1024px) {
  .interlude {
    padding: 80px 0 0;
  }

  .interlude__inner {
    padding: 0 18px;
    min-height: 300px;
  }

  .interlude__left h1 {
    transform: translateY(-115%);
  }

  .interlude__woman {
    width: clamp(220px, 32vw, 400px);
    transform: translateY(clamp(-110px, -9vw, -70px));
  }

  .interlude__blocks {
    width: clamp(170px, 22vw, 300px);
    transform: translateX(clamp(-45px, -3.5vw, 0px));
    margin-bottom: clamp(60px, 9vw, 130px);
  }
}

@media (max-width: 700px) {
  .interlude {
    padding: 64px 0 0;
  }

  .interlude::before {
    height: 48%;
  }

  .interlude__inner {
    padding: 0 14px 14px;
    min-height: 260px;
  }

  .upper {
    margin-bottom: 10px;
  }

  .interlude__woman {
    width: clamp(180px, 33vw, 320px);
    transform: translateY(clamp(-60px, -7vw, -30px));
    filter: drop-shadow(0 34px 54px rgba(0, 0, 0, 0.28));
  }

  .interlude__blocks {
    width: clamp(130px, 22vw, 240px);
    transform: translateX(clamp(-18px, -2vw, 0px));
    margin-bottom: 0; /* na mobile nie rób ogromnej dziury */
    filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.16));
  }
}
@media (max-width: 515px) {
  .interlude__blocks {
    display: none;
  }
}
@media (max-width: 625px) {
  .interlude__left {
    min-width: 0;
  }
  .interlude__left h1 {
    font-size: clamp(22px, 4.5vw, 30px);
    white-space: nowrap;
  }
}

@media (max-width: 420px) {
  .interlude {
    padding: 56px 0 0;
  }

  .interlude__inner {
    padding: 0 12px 12px;
    min-height: 230px;
  }

  .interlude__left {
    min-width: 150px;
  }

  .interlude__left h1 {
    font-size: clamp(22px, 5.4vw, 30px);
  }

  .interlude__woman {
    width: clamp(160px, 34vw, 260px);
    transform: translateY(-26px);
  }

  .interlude__blocks {
    width: clamp(115px, 22vw, 200px);
    transform: none;
  }
}
/**
**  Podstrona SZKOLENIA
**/
.trainings {
  padding: clamp(28px, 5vw, 56px) 0;
}

.trainings__inner {
  position: relative;
  width: min(1400px, 92vw);
  margin: 0 auto;
  min-height: 220px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 100px;
}

.trainings__text {
  position: relative;
  text-align: left;
  margin-top: 10px;
  transform: translateX(-40px);
  z-index: 2;
}

.trainings__title {
  margin: 0;
  font-size: clamp(56px, 7vw, 92px);
  font-weight: 900;
  letter-spacing: 1px;
  color: #f07a00;
  line-height: 0.95;
}

.trainings__subtitle {
  margin: 10px auto 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.35;
  color: #111;
  font-weight: 700;
  max-width: 350px;
}

.trainings__sparkles {
  position: absolute;
  left: 50%;
  top: 0px;
  transform: translateX(-380px);
  width: 90px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.trainings__arc {
  position: absolute;
  right: -60px;
  top: 100px;
  width: 280px;
  height: auto;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.trainings__star {
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(220px);
  width: 48px;
  height: auto;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

.trainings__text {
  transform: none;
  margin-top: 0;
  max-width: 720px;
  padding-inline: 12px;
}

.trainings__title {
  font-size: clamp(36px, 7vw, 92px);
  line-height: 0.95;
  text-align: center;
}

.trainings__subtitle {
  font-size: clamp(14px, 1.6vw, 16px);
  max-width: min(520px, 92vw);
  margin-top: 12px;
}

.trainings__sparkles {
  left: 50%;
  top: 0;
  width: clamp(44px, 8vw, 90px);
  transform: translateX(clamp(-220px, -26vw, -380px));
}

.trainings__arc {
  right: clamp(-30px, -4vw, -60px);
  top: clamp(70px, 10vw, 100px);
  width: clamp(160px, 26vw, 280px);
}

@media (min-width: 1024px) {
  .trainings__inner {
    overflow: visible;
  }

  .trainings__text {
    text-align: left;
    transform: translateX(-40px);
    padding-inline: 0;
  }

  .trainings__title {
    text-align: left;
  }

  .trainings__subtitle {
    text-align: center;
  }
  .trainings__sparkles {
    left: 38%;
  }
}

/* 3) Tablet i niżej – wszystko czytelne i centrowane */
@media (max-width: 1023px) {
  .trainings__inner {
    align-items: center;
    justify-content: center;
    min-height: auto;
  }

  .trainings__text {
    text-align: center;
  }
  .trainings__arc {
    display: none;
  }
}

/* 4) Telefon – zmniejszamy dekoracje + odsuwamy żeby nie nachodziły na tekst */
@media (max-width: 640px) {
  .trainings__inner {
    margin-top: 28px;
    padding-top: 18px;
    padding-bottom: 28px;
  }

  .trainings__sparkles {
    top: 6px;
    transform: translateX(-140px);
    opacity: 0.9;
  }

  .trainings__arc {
    top: 64px;
    right: -22px;
    opacity: 0.35; /* żeby nie walczyło z tekstem */
  }

  .trainings__star {
    transform: translateX(120px);
  }
}

/* 5) Bardzo małe ekrany – dekoracje minimalnie, tekst max czytelny */
@media (max-width: 380px) {
  .trainings__title {
    font-size: 34px;
  }

  .trainings__subtitle {
    font-size: 14px;
    line-height: 1.4;
  }
}
.training-detail {
  background: #fff;
  padding: 80px 0;
}

.training-detail__inner {
  width: min(1400px, 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.training-detail__left {
  border: 8px solid #424242;
  padding: 40px 48px;
  font-size: 16px;
  line-height: 1.6;
  background-color: #fff;
  z-index: 4;
}

.training-detail__title {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #424242;
}

.training-detail__title span {
  font-size: 36px;
}

.light {
  color: #525252;
  font-weight: 400;
  font-size: 16px;
}

.strong {
  color: #525252;
  font-weight: 600;
  font-size: 18px;
}

.training-detail__bonus {
  color: #fc9352;
  font-weight: 600;
  font-size: 13px;
}

.training-detail__info {
  margin-top: 30px;
  color: #f17a0a;
  font-size: 20px;
  font-weight: 900;
}

.training-detail__right {
  position: relative;
  height: 640px;
}

.training-detail__orange-bg {
  position: absolute;
  top: -263px;
  right: -150px;
  width: 135%;
  height: 250px;
  background: #fc9352;
  z-index: 3;
  background-image: url("../images/waves_2.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 340px auto;
}

.training-detail__u {
  position: absolute;
  top: -238px;
  right: 60px;

  width: 420px;
  height: 420px;

  border: 15px solid #3f3f3f;
  border-radius: 50%;

  clip-path: inset(50% 0 0 0);

  z-index: 2;
}

.training-detail__lines {
  position: absolute;
  top: 0;
  right: 0;
  width: 260px;
  z-index: 2;
}

.training-detail__list {
  margin: 10px 0 16px;
  padding: 0;
  list-style: none;
}

.training-detail__list li {
  position: relative;
  padding-left: 16px;
  margin: 6px 0;
}

.training-detail__list li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
}

.training-detail__rays {
  position: absolute;
  bottom: 298px;
  left: 110px;
  width: 280px;
  z-index: 1;
}

.training-detail__person {
  position: absolute;
  bottom: 158px;
  left: 120px;
  width: 320px;
  z-index: 3;
}
@media (max-width: 1300px) {
  .training-detail__orange-bg {
    right: -80px;
  }
}

@media (max-width: 900px) {
  .training-detail__inner {
    grid-template-columns: 1fr;
  }

  .training-detail__left {
    order: 2;
  }

  .training-detail__right {
    order: 1;
  }

  .training-detail__right {
    height: 500px;
    margin-top: 80px;
  }

  .training-detail__orange-bg {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    top: -80px;
    width: 120%;
    height: 200px;
    background-position: center;
  }

  .training-detail__u {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    top: -60px;
    width: 340px;
    height: 340px;
  }

  .training-detail__rays {
    left: 50%;
    transform: translateX(-50%);
    bottom: 210px;
    width: 230px;
  }

  .training-detail__person {
    left: 50%;
    transform: translateX(-50%);
    bottom: 90px;
    width: 280px;
  }
}

@media (max-width: 640px) {
  .training-detail {
    padding: 50px 0;
  }

  .training-detail__right {
    height: 420px;
  }

  .training-detail__orange-bg {
    top: -40px;
    height: 170px;
    width: 130%;
    background-size: 220px auto;
  }

  .training-detail__u {
    top: -20px;
    width: 280px;
    height: 280px;
    border-width: 10px;
  }

  .training-detail__rays {
    bottom: 170px;
    width: 200px;
  }

  .training-detail__person {
    bottom: 60px;
    width: 240px;
  }
}

@media (max-width: 380px) {
  .training-detail__right {
    height: 360px;
  }

  .training-detail__orange-bg {
    height: 140px;
  }

  .training-detail__u {
    width: 240px;
    height: 240px;
    border-width: 8px;
  }

  .training-detail__rays {
    width: 170px;
    bottom: 140px;
  }

  .training-detail__person {
    width: 210px;
    bottom: 50px;
  }
}

.training-2 {
  background: #fff;
}

.training-2__left {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.training-2__inner {
  width: min(1400px, 92vw);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 565px;
  gap: 60px;

  align-items: stretch;
}

.training-2__art {
  width: min(728px, 90vw);
  height: auto;
}

.training-2__card {
  background: #fff;
  border: 6px solid #f07a00;
  padding: 40px 48px;

  height: 100%;
  display: flex;
  flex-direction: column;
  width: 110%;
}

.training-2__title {
  margin: 0 0 80px;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 900;
  color: #f07a00;
  letter-spacing: 0.6px;
}

.training-2__body {
  font-size: 17px;
  line-height: 1.65;
  color: #000;
}

.training-2__body p {
  margin: 0 0 12px;
}

.training-2__body strong {
  font-weight: 900;
}
@media (max-width: 1200px) {
  .training-2__inner {
    grid-template-columns: 1fr 520px;
    gap: 40px;
  }

  .training-2__card {
    width: 100%;
    padding: 34px 38px;
  }

  .training-2__title {
    margin-bottom: 56px;
  }
}

@media (max-width: 1024px) {
  .training-2__inner {
    grid-template-columns: 1fr 460px;
    gap: 28px;
  }

  .training-2__card {
    width: 100%;
    padding: 30px 32px;
    border-width: 5px;
  }

  .training-2__title {
    margin-bottom: 44px;
  }

  .training-2__art {
    width: min(640px, 92vw);
  }
}

@media (max-width: 900px) {
  .training-2__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .training-2__left {
    height: auto;
  }

  .training-2__art {
    width: min(720px, 100%);
  }

  .training-2__card {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .training-2__inner {
    gap: 18px;
  }

  .training-2__card {
    padding: 22px 18px;
    border-width: 4px;
  }

  .training-2__title {
    margin-bottom: 28px;
  }
}

@media (max-width: 380px) {
  .training-2__card {
    padding: 18px 14px;
    border-width: 3px;
  }

  .training-2__title {
    margin-bottom: 22px;
  }
}
.training-3 {
  background: #fff;
  padding: 80px 0;
}

.training-3__inner {
  width: min(1400px, 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 635px 1fr;
  gap: 80px;
  align-items: stretch;
}

.training-3__card {
  background: #fc9352;
  padding: 34px 100px 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
}

.training-3__title {
  margin: 0 0 48px;
  font-size: 38px;
  line-height: 1.05;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.training-3__body {
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  line-height: 1.65;
  font-weight: 600;
}

.training-3__body p {
  margin: 0 0 64px;
  font-size: 17px;
}

.training-3__small {
  font-size: 11px;
  opacity: 0.95;
  font-weight: 300;
}

.training-3__btn {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  background: #fff;
  color: #000;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0.4px;
  font-size: 12px;

  padding: 10px 14px 10px 18px;
  border-radius: 999px;
  width: min(460px, 100%);

  transition:
    transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.35s ease;
}

.training-3__btnIcon {
  width: 34px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #2b2b2b;
}

.training-3__btnIcon img {
  width: 14px;
  height: auto;
  display: block;
}

.training-3__btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(240, 122, 0, 0.25);
}

.training-3__art {
  position: relative;
  background: #fff;
  min-height: 520px;
}

.training-3__star {
  position: absolute;
  top: 240px;
  left: 190px;
  width: 180px;
  height: auto;
}

.training-3__book {
  position: absolute;
  top: 290px;
  left: -200px;
  width: 560px;
  height: auto;
  z-index: 2;
}

.training-3__book_photo {
  position: absolute;
  bottom: 20px;
  left: 300px;
  width: auto;
  height: auto;
  z-index: 2;
}

.training-3__waves {
  position: absolute;
  bottom: -80px;
  left: -95px;
  width: 90px;
  height: auto;
  transform: rotate(90deg);
  z-index: 0;
}
@media (max-width: 1560px) {
  .training-3__book_photo {
    left: 150px;
  }
}
@media (max-width: 1200px) {
  .training-3__inner {
    grid-template-columns: 560px 1fr;
    gap: 50px;
  }

  .training-3__card {
    padding: 32px 70px 30px 24px;
  }

  .training-3__art {
    min-height: 480px;
  }

  .training-3__book {
    left: -150px;
    width: 500px;
  }

  .training-3__star {
    left: 150px;
    width: 150px;
  }

  .training-3__book_photo {
    left: 100px;
    transform: scale(0.95);
    transform-origin: left bottom;
  }

  .training-3__waves {
    left: -70px;
    width: 80px;
  }
}

/* 2) Tablet / mały laptop – ciaśniej, bez overflow */
@media (max-width: 1024px) {
  .training-3 {
    padding: 60px 0;
  }

  .training-3__inner {
    grid-template-columns: 520px 1fr;
    gap: 32px;
  }

  .training-3__card {
    padding: 28px 54px 26px 22px;
  }

  .training-3__art {
    min-height: 440px;
  }

  .training-3__book {
    left: -120px;
    width: 460px;
    top: 260px;
  }

  .training-3__star {
    top: 210px;
    left: 120px;
    width: 130px;
  }

  .training-3__book_photo {
    left: 100px;
    bottom: 10px;
    transform: scale(0.9);
    transform-origin: left bottom;
  }

  .training-3__waves {
    bottom: -60px;
    left: -55px;
    width: 70px;
  }
}

@media (max-width: 900px) {
  .training-3__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .training-3__art {
    min-height: 420px;
  }

  .training-3__book {
    left: 50%;
    transform: translateX(45%);
    top: -100px;
    width: 520px;
    max-width: 25vw;
  }

  .training-3__star {
    display: none;
  }

  .training-3__book_photo {
    left: 50%;
    transform: translateX(-50%) scale(0.95);
    bottom: 0;
    max-width: 52vw;
  }

  .training-3__waves {
    display: none;
  }
}
@media (max-width: 800px) {
  .training-3__book {
    top: 0px;
  }
}

@media (max-width: 640px) {
  .training-3 {
    padding: 50px 0;
  }

  .training-3__card {
    padding: 22px 18px;
  }

  .training-3__title {
    margin-bottom: 32px;
  }

  .training-3__body p {
    margin-bottom: 32px;
  }

  .training-3__art {
    min-height: 360px;
  }

  .training-3__book {
    top: -12px;
    width: 460px;
  }

  .training-3__star {
    top: 150px;
    width: 120px;
  }

  .training-3__book_photo {
    max-width: 67vw;
  }

  .training-3__waves {
    width: 60px;
    bottom: -30px;
  }
}
@media (max-width: 480px) {
  .training-3__book_photo {
    max-width: 83vw;
  }
}

@media (max-width: 380px) {
  .training-3__art {
    min-height: 320px;
  }
}
@media (max-width: 1024px) {
  .training-3__title {
    font-size: 32px;
    margin-bottom: 34px;
  }

  .training-3__body {
    font-size: 12px;
  }

  .training-3__body p {
    font-size: 16px;
    margin-bottom: 36px;
  }

  .training-3__small {
    font-size: 11px;
  }
}

@media (max-width: 640px) {
  .training-3__title {
    font-size: 26px;
    line-height: 1.08;
    margin-bottom: 24px;
  }

  .training-3__body {
    line-height: 1.7;
  }

  .training-3__body p {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .training-3__small {
    font-size: 11px;
    line-height: 1.6;
  }

  .training-3__btn {
    font-size: 12px;
    width: 100%;
  }
}

@media (max-width: 380px) {
  .training-3__title {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .training-3__body p {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .training-3__small {
    font-size: 10.5px;
  }
}
/*WIDGET KONTAKT SZKOLENIA*/
.contact-final {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.contact-final__inner {
  width: min(1400px, 92vw);
  margin: 0 auto;
  position: relative;
  min-height: 600px;
}

.prices-shot {
  background: transparent;
  padding: 60px 0 0px;
}

.prices-shot__inner {
  width: min(980px, 92vw);
  margin: 0 auto;
}

.prices-shot__row {
  display: grid;
  grid-template-columns: 1fr 200px;
  column-gap: 0;
  align-items: start;
  position: relative;
}

.prices-shot__row--top {
  margin-bottom: 30px;
}

.prices-shot__row--bottom {
  margin-bottom: 0;
}

.prices-shot__bar {
  background: #f07a00;
  color: #fff;
  border-radius: 22px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.08);
}

.prices-shot__bar--tall {
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
}

.prices-shot__line {
  display: flex;
  align-items: center;
  gap: 12px;
}

.prices-shot__barText {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 22px;
  line-height: 1.1;
}

.prices-shot__spark {
  font-size: 20px;
  line-height: 1;
  transform: translateY(-1px);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.18);
}

.prices-shot__card {
  background: #2f2f2f;
  color: #fff;
  border-radius: 18px;
  padding: 16px 16px 14px;
  border: 3px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.22);
  position: relative;
  margin-left: -90px;
  z-index: 3;
}

.prices-shot__card--small {
  margin-top: 20px;
}

.prices-shot__card--big {
  margin-top: 12px;
}

.prices-shot__cardLabel {
  color: #f07a00;
  font-weight: 900;
  letter-spacing: 1.2px;
  font-size: 18px;
  margin: 2px 0 12px;
  text-transform: uppercase;
}

.prices-shot__item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  margin: 12px 0;
}

.prices-shot__spark--card {
  color: #f07a00;
  text-shadow: none;
  transform: translateY(1px);
}

.prices-shot__itemText {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
}

.prices-shot__muted {
  font-weight: 700;
  opacity: 0.95;
}

.prices-title {
  text-align: center;
  margin: 0 0 22px;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0.8px;
  color: #111;
}

@media (max-width: 1024px) {
  .prices-shot__inner {
    width: min(980px, 94vw);
  }

  .prices-shot__row {
    grid-template-columns: 1fr 190px;
  }

  .prices-shot__card {
    margin-left: -60px;
  }

  .prices-shot__barText {
    font-size: 20px;
  }
}

@media (max-width: 820px) {
  .prices-shot__row {
    grid-template-columns: 1fr 170px;
  }

  .prices-shot__card {
    margin-left: -40px;
    padding: 14px 14px 12px;
  }

  .prices-shot__cardLabel {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .prices-shot__bar {
    padding: 16px 18px;
    border-radius: 18px;
  }

  .prices-shot__barText {
    font-size: 18px;
    letter-spacing: 1px;
  }

  .prices-shot__itemText {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .prices-shot {
    padding: 48px 0 0;
  }

  .prices-shot__row {
    grid-template-columns: 1fr 150px;
  }

  .prices-shot__card {
    margin-left: -18px;
    border-width: 2px;
    border-radius: 16px;
  }

  .prices-shot__bar {
    padding: 14px 16px;
    border-radius: 16px;
  }

  .prices-shot__barText {
    font-size: 16px;
  }

  .prices-shot__spark {
    font-size: 18px;
  }

  .prices-title {
    font-size: 30px;
  }
}

@media (max-width: 420px) {
  .prices-shot__row {
    grid-template-columns: 1fr 140px;
  }

  .prices-shot__card {
    margin-left: -18px;
    justify-self: end;
  }

  .prices-shot__barText {
    font-size: 15px;
    letter-spacing: 0.8px;
  }

  .prices-shot__itemText {
    font-size: 12.5px;
  }
}

.contact-final__contact {
  position: absolute;
  right: 150px;
  top: 150px;
  max-width: 370px;
}

.contact-final__contact h3 {
  margin: 0 0 6px;
  color: #f07a00;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-align: center;
}

.contact-final__subtitle {
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}

.contact-final__decor {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 700px;
  height: 380px;
  pointer-events: none;
}

.decor {
  position: absolute;
  height: auto;
  max-width: none;
}

.decor--waves {
  left: 250px;
  bottom: -130px;
  width: 260px;
  z-index: 1;
}

.decor--arc {
  left: -260px;
  bottom: -120px;
  width: 440px;
  z-index: 0;
  opacity: 0.9;
}

.decor--monitor {
  left: 0px;
  bottom: 0px;
  width: 520px;
  z-index: 2;
}

@media (max-width: 1000px) {
  .contact-final__decor {
    display: none;
  }
  .contact-final__inner {
    min-height: 300px;
  }
  .contact-final__contact {
    position: relative;
    right: auto;
    top: 80px;

    margin: 0 auto;
    text-align: center;
    max-width: 500px;
  }

  .contact-final__contact h3 {
    text-align: center;
  }

  .contact-final__subtitle {
    text-align: center;
  }
}
/**
**  Podstrona PORTFOLIO
**/
.portfolio-hero {
  background: #fff;
  padding: 40px 0 0;
}

.portfolio-hero__inner {
  width: min(1400px, 92vw);
  margin: 0 auto;
  position: relative;
  min-height: 360px;
  margin-top: 100px;
}

.portfolio-hero__text {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: 40px;
  padding-left: 280px;
}

.portfolio-hero__title {
  margin: 0;
  font-size: clamp(52px, 6vw, 92px);
  font-weight: 900;
  letter-spacing: 1px;
  color: #404040;
  line-height: 1;
}

.portfolio-hero__subtitle {
  margin: 10px auto 0;
  font-size: 18px;
  line-height: 1.35;
  color: #404040;
  font-weight: 400;
  max-width: 520px;
}

.portfolio-hero__bar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -100px;
  width: 200%;
  background: #4b4b4b;
  padding: 26px 0;
  z-index: 3;
}

.portfolio-hero__barInner {
  width: min(1400px, 92vw);
  margin: 0 auto;
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.5px;
}

.portfolio-hero__scribble {
  position: absolute;
  left: -435px;
  top: -150px;
  width: auto;
  height: auto;
  z-index: 1;
  pointer-events: none;
  filter: blur(5px);
}

.portfolio-hero__camera {
  position: absolute;
  left: -100px;
  top: -60px;
  width: 440px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.portfolio-hero__waves {
  position: absolute;
  right: -420px;
  top: -250px;
  width: 850px;
  height: auto;

  z-index: 2;
  pointer-events: none;
  user-select: none;

  opacity: 1;

  -webkit-mask-image: linear-gradient(to left, black 0%, black 100%);
  mask-image: linear-gradient(to left, black 0%, black 100%);

  -webkit-mask-size: 0% 100%;
  mask-size: 0% 100%;

  -webkit-mask-position: right center;
  mask-position: right center;

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.portfolio-hero__waves.animate {
  animation: wavesRevealRight 1s ease-out forwards;
}

@keyframes wavesRevealRight {
  from {
    -webkit-mask-size: 0% 100%;
    mask-size: 0% 100%;
  }
  to {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
}

.portfolio-hero__arc {
  position: absolute;
  right: -60px;
  bottom: -50px;
  width: 280px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  user-select: none;

  transform: rotate(180deg);

  opacity: 1;

  -webkit-mask-image: linear-gradient(to left, black 0%, black 100%);
  mask-image: linear-gradient(to left, black 0%, black 100%);

  -webkit-mask-size: 0% 100%;
  mask-size: 0% 100%;

  -webkit-mask-position: right center;
  mask-position: right center;

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.portfolio-hero__arc.animate {
  animation: arcRevealRight 1s ease-out forwards;
}

@keyframes arcRevealRight {
  from {
    -webkit-mask-size: 0% 100%;
    mask-size: 0% 100%;
  }
  to {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
}

.portfolio-hero__phone {
  position: absolute;
  right: 50px;
  top: -70px;
  width: 520px;
  height: auto;
  z-index: 4;
  pointer-events: none;
  user-select: none;

  transform-origin: 50% 60%;
  will-change: transform;
}

.portfolio-hero__phone.vibrate {
  animation: phoneVibrate 0.12s linear infinite;
}

@keyframes phoneVibrate {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  15% {
    transform: translate(-1px, 1px) rotate(-0.6deg);
  }
  30% {
    transform: translate(1px, -1px) rotate(0.6deg);
  }
  45% {
    transform: translate(-2px, 0px) rotate(-0.8deg);
  }
  60% {
    transform: translate(2px, 1px) rotate(0.8deg);
  }
  75% {
    transform: translate(-1px, -1px) rotate(-0.6deg);
  }
  90% {
    transform: translate(1px, 0px) rotate(0.6deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

@media (max-width: 1200px) {
  .portfolio-hero__text {
    padding-left: 220px;
    max-width: 620px;
  }

  .portfolio-hero__phone {
    width: 440px;
    right: 10px;
    top: -55px;
  }

  .portfolio-hero__waves {
    width: 760px;
  }

  .portfolio-hero__arc {
    right: -40px;
    bottom: -46px;
    width: 240px;
  }

  .portfolio-hero__camera {
    display: none;
  }

  .portfolio-hero__scribble {
    display: none;
  }
}

@media (max-width: 980px) {
  .portfolio-hero__inner {
    min-height: 320px;
  }

  .portfolio-hero__text {
    padding-left: 120px;
    max-width: 520px;
  }

  .portfolio-hero__phone {
    width: 360px;
    right: -20px;
    top: -40px;
  }

  .portfolio-hero__waves {
    top: -220px;
    width: 680px;
  }

  .portfolio-hero__arc {
    right: -20px;
    bottom: -40px;
    width: 210px;
  }

  .portfolio-hero__bar {
    bottom: -80px;
  }

  .portfolio-hero__barInner {
    font-size: 28px;
  }
}
@media (max-width: 800px) {
  .portfolio-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }

  .portfolio-hero__text {
    order: 1;
    padding-left: 0;
    padding-top: 20px;
    max-width: 100%;
    text-align: center;
  }

  .portfolio-hero__phone {
    order: 2;
    position: relative;
    right: auto;
    top: auto;
    margin: 40px auto 0;
    width: min(420px, 85vw);
  }

  .portfolio-hero__bar {
    order: 3;
    position: relative;
    width: 150vw;
    left: 85%;
    transform: translateX(-50%);
    bottom: auto;
  }

  .portfolio-hero__barInner {
    width: min(1400px, 92vw);
    margin: 0 auto;
  }
  .portfolio-hero__waves {
    top: 0px;
    left: 255px;
    width: 680px;
  }
  .portfolio-hero__arc {
    right: 110px;
    bottom: 50px;
    width: 210px;
  }
}
@media (max-width: 800px) {
  .portfolio-hero__title {
    font-size: 48px;
    line-height: 1.05;
  }

  .portfolio-hero__subtitle {
    font-size: 16px;
    line-height: 1.5;
    max-width: 90%;
    margin: 16px auto 0;
  }

  .portfolio-hero__barInner {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .portfolio-hero__title {
    font-size: 40px;
  }

  .portfolio-hero__subtitle {
    font-size: 15px;
  }

  .portfolio-hero__barInner {
    font-size: 20px;
  }
  .portfolio-hero__waves {
    top: 50px;
    left: 210px;
    width: 520px;
  }
  .portfolio-hero__arc {
    right: 20px;
    bottom: 50px;
    width: 210px;
  }
}
@media (max-width: 480px) {
  .portfolio-hero__waves {
    top: 190px;
    left: 150px;
    width: 380px;
  }
  .portfolio-hero__arc {
    right: 20px;
    bottom: 50px;
    width: 160px;
  }
}
@media (max-width: 420px) {
  .portfolio-hero__title {
    font-size: 34px;
  }

  .portfolio-hero__subtitle {
    font-size: 14px;
  }

  .portfolio-hero__barInner {
    font-size: 18px;
  }
}
@media (max-width: 400px) {
  .portfolio-hero__waves {
    top: 190px;
    left: 115px;
    width: 380px;
  }
  .portfolio-hero__arc {
    right: 30px;
    bottom: 50px;
    width: 160px;
  }
}
/*
* PODSTRONA O NAS
*/
.onas {
  background: #fe9554;
  padding: 120px 20px;
  position: relative;
}

.onas__inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.onas__title {
  font-size: clamp(44px, 6vw, 90px);
  font-weight: 900;
  margin: 0 0 20px;
  color: #111;
}

.onas__content {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: end;
}

.onas__person {
  position: absolute;
  width: 100%;
  max-width: 875px;
  left: -160px;
  top: -60px;
  filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.25));
  z-index: 2;
}

.onas__texts {
  display: grid;
  gap: 20px;
}

.onas__box {
  background: rgba(255, 255, 255, 0.8);
  border: 2px dashed #000;
  border-radius: 14px;
  padding: 22px;
}

.onas__box p {
  margin: 0;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.35;
}

.onas__brand {
  color: #f07a00;
  font-weight: 900;
}

.onas__decor {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.onas__decor--burst-l {
  left: -300px;
  top: 250px;
  width: 350px;
}
.onas__decor--burst-r {
  right: -20px;
  top: -20px;
  width: 250px;
}
.onas__decor--waves-top {
  left: 120px;
  top: 80px;
  width: 500px;
}
.onas__decor--waves-bottom {
  right: -40px;
  bottom: -260px;
  width: 260px;
}
.onas__decor--letters {
  right: 0;
  top: 0;
  width: 380px;
  opacity: 0.35;
}

.onas__decor--marta {
  display: none;
}

.onas__decor--logo {
  right: 550px;
  bottom: 60px;
  width: 200px;
  position: absolute;
  pointer-events: none;
  z-index: 1;
  transform: rotate(270deg);
}
@media (max-width: 1290px) {
  .onas__decor--logo {
    right: 250px;
  }
}
@media (max-width: 1165px) {
  .onas__decor--marta {
    display: none;
  }
  .onas__decor--logo {
    display: none;
  }
}
@media (max-width: 980px) {
  .onas__content {
    grid-template-columns: 1fr;
  }
  .onas__person {
    max-width: 360px;
    margin: 0 auto;
  }
  .onas__decor--burst-l {
    display: none;
  }
  .onas__person {
    display: none;
  }
  .onas__decor--waves-bottom {
    width: 200px;
    bottom: -200px;
  }
}
.ceo {
  background: #fe9554;
  padding: 80px 20px;
  overflow: hidden;
}

.ceo__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.ceo__name {
  font-size: clamp(50px, 7vw, 110px);
  font-weight: 900;
  margin: 0 0 30px;
  color: #000;
  letter-spacing: -0.02em;
}

.ceo__content {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 50px;
  align-items: center;
}

.ceo__text-box {
  background: rgba(255, 255, 255, 0.8);
  border: 2px dashed #000;
  border-radius: 14px;
  padding: 28px;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.45;
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.15);
}

.ceo__text-box p {
  margin: 0 0 18px;
}

.ceo__text-box strong {
  font-weight: 800;
}

.ceo__photo-box {
  background: #eee;
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.25);
}

.ceo__photo {
  width: 100%;
  border-radius: 18px;
  display: block;
}

@media (max-width: 1024px) {
  .ceo__content {
    grid-template-columns: 1fr;
  }

  .ceo__photo-box {
    max-width: 480px;
    margin: 0 auto;
  }

  .ceo__name {
    text-align: center;
  }
}
.team {
  background: #fe9554;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.team__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.team__content {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 55px;
  align-items: start;
}

.team__photo-box {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 42px;
  padding: 18px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(0, 0, 0, 0.4);
}

.team__photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 30px;
}

.team__right {
  display: grid;
  gap: 16px;
}

.team__title {
  margin: 0;
  font-size: clamp(44px, 5.2vw, 92px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #000;
  line-height: 1;
  text-transform: uppercase;
}

.team__text-box {
  background: rgba(255, 255, 255, 0.82);
  border: 2px dashed #000;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.14);
}

.team__text-box p {
  margin: 0 0 18px;
  color: #111;
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.35;
}

.team__text-box p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .team__content {
    grid-template-columns: 1fr;
  }
  .team__photo-box {
    max-width: 560px;
    margin: 0 auto;
  }
  .team__title {
    text-align: center;
  }
}
/* HORIZONTAL SCROLL */
.hscroll {
  position: relative;
  background: #fc9352;
  overflow: hidden;
}

.pin-wrap {
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.titles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}
.title {
  position: absolute;
  top: 70px;
  left: 0;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: clamp(28px, 5vw, 92px);
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  opacity: 0;
  will-change: transform, opacity, filter;
}
.title::after {
  content: "";
  display: block;
  width: 62%;
  height: 5px;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

/* STATS */
.stats-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 6;
}

.stat {
  position: absolute;
  right: 8vw;
  left: auto;

  bottom: clamp(28px, 6vh, 72px);

  text-align: right;
  white-space: nowrap;

  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 35px;

  color: rgba(255, 255, 255, 0.9);
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.72);

  text-shadow:
    0 10px 35px rgba(0, 0, 0, 0.3),
    0 0 22px rgba(255, 255, 255, 0.1);

  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.99);
  filter: blur(10px);
  will-change: opacity, transform, filter;

  mix-blend-mode: overlay;
}

@media (max-width: 520px) {
  .stat {
    right: 6vw;
    bottom: 22px;
    font-size: 13px;
    -webkit-text-stroke: 0.9px rgba(255, 255, 255, 0.7);
    letter-spacing: 0.12em;
    mix-blend-mode: normal;
  }
}

.track {
  display: flex;
  gap: 28px;
  padding: 0 8vw;
  align-items: center;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  z-index: 2;
  position: relative;
}

.phone-frame {
  flex: 0 0 auto;

  width: min(220px, 70vw);
  aspect-ratio: 9 / 19.5;
  border-radius: 38px;
  overflow: hidden;

  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);

  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;

  position: relative;
}

.phone-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;

  transform: none !important;
  filter: none !important;
}

.placeholder::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(
    110deg,
    transparent 40%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 60%
  );
  transform: translateX(-45%);
  animation: shimmer 2.4s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.55;
}
@keyframes shimmer {
  0% {
    transform: translateX(-45%) rotate(0.001deg);
  }
  100% {
    transform: translateX(45%) rotate(0.001deg);
  }
}

@media (max-width: 520px) {
  .title {
    top: 44px;
    letter-spacing: 0.14em;
  }
  .track {
    gap: 18px;
  }
  .phone-frame {
    border-radius: 30px;
    width: min(190px, 72vw);
  }
  .stat {
    font-size: 13px;
    -webkit-text-stroke: 0.9px rgba(255, 255, 255, 0.7);
  }
}

@media (prefers-reduced-motion: reduce) {
  .placeholder::after {
    animation: none;
  }
}

/* HUD sidescroll */
.cat-hud--big {
  position: absolute;
  top: clamp(18px, 3vh, 34px);
  left: 50%;
  transform: translate3d(-50%, 8px, 0);
  z-index: 12;
  pointer-events: none;

  width: min(820px, 92vw);
  display: grid;
  gap: 12px;

  opacity: 0;
  filter: blur(6px);
  will-change: opacity, transform, filter;
}

.cat-hud__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cat-hud__pill {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;

  padding: 14px 18px;
  border-radius: 999px;

  background: rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.16);

  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cat-hud__name {
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: clamp(16px, 2.2vw, 28px);
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.cat-hud__dot {
  font-weight: 900;
  font-size: clamp(14px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.78);
}

.cat-hud__count {
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: clamp(12px, 1.5vw, 18px);
  color: rgba(255, 255, 255, 0.82);
}

.cat-hud__meta {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.cat-hud__pct {
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: clamp(12px, 1.4vw, 16px);
  color: rgba(255, 255, 255, 0.78);
}

.cat-hud__bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cat-hud__barFill {
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.18),
    0 0 22px rgba(255, 255, 255, 0.1);
  transform: translateZ(0);
}

/*
/* PROJEKTY GRAFICZNE SEKCJA
*/

.gfx {
  padding: clamp(40px, 6vw, 80px) 0;
  background: #ffffff;
}

.gfx__inner {
  width: min(1300px, 92vw);
  margin: 0 auto;
}

.gfx__title {
  margin: 0 0 28px;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: #f26b00;
  letter-spacing: 0.02em;
}

.gfx-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
  margin-bottom: 40px;
}

.gfx-card__cover {
  background: #e9e9e9;
  position: relative;
}

.gfx-card__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    1000px 280px at 20% 20%,
    rgba(255, 255, 255, 0.55),
    transparent 60%
  );
  pointer-events: none;
}

.gfx-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gfx-card__body {
  padding: 20px 32px 20px;
}

.gfx-card__name {
  margin: 0;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 900;
  color: #111;
}

.gfx-card__desc {
  margin: 6px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: #f26b00;
  letter-spacing: 0.02em;
}

.gfx-card__cta {
  margin-top: 20px;

  display: inline-flex;
  align-items: center;
  gap: 25px;

  text-decoration: none;
  color: #111;
  font-weight: 900;
  letter-spacing: 0.4px;
  font-size: 18px;

  background: #ffffff;
  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;
}

.gfx-card__cta:hover {
  transform: scale(1.04) rotate(1.5deg);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

@media (max-width: 1024px) {
  .gfx-card__cta {
    font-size: 16px;
    gap: 18px;
    padding: 12px 16px;
    border-width: 8px;
  }
}

@media (max-width: 640px) {
  .gfx-card__cta {
    font-size: 15px;
    gap: 14px;
    padding: 10px 14px;
    border-width: 6px;
  }
}

@media (max-width: 420px) {
  .gfx-card__cta {
    font-size: 14px;
    gap: 10px;
    padding: 8px 12px;
    border-width: 4px;
  }
}

.gfx-card__ctaIcon {
  width: 34px;
  height: 34px;
  border-radius: 999px;

  display: grid;
  place-items: center;

  background: #fcf9f5;
  font-size: 16px;
  font-weight: 900;
}

.gfx-card__arrow {
  filter: invert(100%);
  width: 14px;
  height: auto;
}
/*
/* UGC
*/
.ugc {
  position: relative;
  overflow: visible;
  background: #fff;
  padding: clamp(34px, 6vw, 70px) 0;
}

.ugc__inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

.ugc__header {
  position: relative;
  overflow: visible;
  border: 10px solid #fc9352;
  border-radius: 10px;
  background: #fff;

  width: 100%;
  padding: 18px clamp(16px, 3vw, 32px);
  min-height: 74px;
}

.ugc__title {
  margin: 0;
  font-weight: 900;
  font-size: clamp(18px, 2.2vw, 28px);
  letter-spacing: 0.04em;
  color: #f26b00;
  margin-left: 50px;
}

.ugc__shots {
  position: absolute;
  right: clamp(16px, 3vw, 32px);
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 84px;
  pointer-events: none;
}

.ugc__shot {
  position: absolute;
  object-fit: cover;
}

.ugc__shot--1 {
  right: 184px;
  top: -100px;
  transform: rotate(-2deg);
  width: 280px;
  height: auto;
}
.ugc__shot--2 {
  right: 280px;
  top: -150px;
  transform: rotate(2deg);
  width: 140px;
  height: auto;
}
.ugc__shot--3 {
  right: 50px;
  top: 87px;
  width: 140px;
  height: auto;
}
@media (max-width: 1450px) {
  .ugc__shot--3 {
    display: none;
  }
}
.ugc-grid {
  margin: clamp(26px, 4vw, 46px) auto 0;
  width: min(1200px, 92vw);
  position: relative;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  justify-items: center;

  overflow: visible;
}

.ugc-ellipses {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

.ugc-ellipse {
  position: absolute;
  width: 260px;
  height: 180px;
  border-radius: 999px;
  background: rgba(252, 147, 82, 0.2);
}

.ugc-ellipse--1 {
  left: -40px;
  top: 55%;
  transform: translateY(-50%);
}
.ugc-ellipse--2 {
  left: 40%;
  top: 65%;
  transform: translate(-50%, -50%);
}
.ugc-ellipse--3 {
  right: -40px;
  top: 55%;
  transform: translateY(-50%);
}

.ugc-card {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 100%;
}

.ugc-card__frame {
  width: min(300px, 100%);
  aspect-ratio: 9 / 16;
  border-radius: 34px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
}

.ugc-card__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ugc-btn {
  margin: 60px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 25px;

  text-decoration: none;
  color: #111;
  font-weight: 900;
  letter-spacing: 0.4px;
  font-size: 18px;

  background: #ffffff;
  border: 10px solid #fc9352;
  padding: 14px 22px;
  border-radius: 999px;

  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;

  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.ugc-btn:hover {
  transform: translateX(-50%) scale(1.04) rotate(1.5deg);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

@media (max-width: 1024px) {
  .ugc-btn {
    margin-top: 44px;
    font-size: 16px;
    gap: 18px;
    padding: 12px 18px;
    border-width: 8px;
  }
}

@media (max-width: 640px) {
  .ugc-btn {
    display: inline-flex;
    margin: 32px auto 0;

    font-size: 15px;
    gap: 14px;
    padding: 10px 16px;
    border-width: 6px;
  }
}

@media (max-width: 420px) {
  .ugc-btn {
    font-size: 14px;
    gap: 10px;
    padding: 9px 14px;
    border-width: 4px;
  }
}

.ugc-btn__icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #fcf9f5;
}

.ugc-btn__arrow {
  filter: invert(100%);
  width: 14px;
  height: auto;
}

@media (max-width: 980px) {
  .ugc__shots {
    width: 240px;
    top: 225%;
  }
  .ugc__shot {
    width: 74px;
    height: 74px;
    border-radius: 16px;
  }
  .ugc__shot--1 {
    right: 160px;
  }
  .ugc__shot--2 {
    right: 80px;
  }
}

@media (max-width: 860px) {
  .ugc-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ugc-ellipse {
    width: 320px;
    height: 200px;
  }
  .ugc-ellipse--1 {
    left: 50%;
    top: 18%;
    transform: translate(-50%, -50%);
  }
  .ugc-ellipse--2 {
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
  }
  .ugc-ellipse--3 {
    left: 50%;
    top: 86%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 520px) {
  .ugc__header {
    border-width: 8px;
    padding: 14px 16px;
    min-height: 64px;
  }
  .ugc__shots {
    display: none;
  }
  .ugc-card__frame {
    width: min(240px, 92vw);
    border-radius: 30px;
  }
}

/*Zorganizowany SM MANAGER*/
.sm-manager2 {
  background: #fff;
  padding: 60px 0;
}

.sm-manager2__inner {
  width: min(1400px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 52% 48%;
  gap: 60px;
  align-items: stretch;
  margin-top: 42px;
}

.sm-manager2__left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.sm-manager2__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.sm-manager2__right {
  display: flex;
  justify-content: flex-end;
}

.sm-manager2__box {
  width: 100%;
  border: 4px solid #f17a0a;
  padding: 34px 34px 28px;
  min-height: 640px;
  background: #fff;
}

.sm-manager2__title {
  margin: 0 0 26px;
  color: #f17a0a;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.05;
  font-size: 34px;
}

.sm-manager2__text {
  font-size: 15px;
  line-height: 1.6;
  color: #111;
  font-weight: 600;
  max-width: 520px;
}

.sm-manager2__text strong {
  font-weight: 900;
}

.sm-manager2__text ul {
  margin: 8px 0 14px;
  padding: 0;
  list-style: none;
}

.sm-manager2__text li {
  margin: 6px 0;
  position: relative;
  padding-left: 16px;
}

.sm-manager2__text li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
}

.sm-manager2__checks li::before {
  content: "✔";
  color: #111;
  font-weight: 900;
}

.sm-manager2__final {
  margin-top: 18px;
}

@media (min-width: 1100px) {
  .sm-manager2__box {
    min-height: 640px;
  }
}

.sm-manager2 {
  padding: clamp(32px, 6vw, 60px) 0;
}

.sm-manager2__inner {
  gap: clamp(22px, 4vw, 60px);
  margin-top: clamp(18px, 4vw, 42px);
}

.sm-manager2__box {
  padding: clamp(18px, 3.2vw, 34px);
  min-height: auto; /* domyślnie nie wymuszamy wysokości */
}

.sm-manager2__title {
  font-size: clamp(26px, 3.2vw, 34px);
  margin-bottom: clamp(16px, 3vw, 26px);
}

.sm-manager2__text {
  font-size: clamp(14px, 1.6vw, 15px);
  max-width: 520px;
}

@media (max-width: 1099px) {
  .sm-manager2__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .sm-manager2__left {
    padding: 0;
  }

  .sm-manager2__text {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .sm-manager2__inner {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }

  .sm-manager2__right {
    justify-content: center;
  }

  .sm-manager2__box {
    border-width: 3px;
  }

  .sm-manager2__img {
    max-width: 720px;
  }
}

@media (max-width: 640px) {
  .sm-manager2 {
    padding: 28px 0;
  }

  .sm-manager2__box {
    padding: 18px 16px;
    border-width: 3px;
  }

  .sm-manager2__title {
    line-height: 1.06;
    letter-spacing: 0.5px;
  }

  .sm-manager2__text {
    line-height: 1.65;
  }

  .sm-manager2__text li {
    padding-left: 14px;
  }

  .sm-manager2__final {
    margin-top: 14px;
  }
}

@media (max-width: 380px) {
  .sm-manager2__box {
    padding: 16px 14px;
    border-width: 2px;
  }

  .sm-manager2__title {
    font-size: 24px;
  }
}
