@charset "UTF-8";
/* ==========================================
   0. DEKLARACJA FONTÓW (Self-hosting)
   ========================================== */
@font-face {
  font-family: "Lexend Exa";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/lexend-exa-v35-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Lexend Exa";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/lexend-exa-v35-latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "Lexend Exa";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/lexend-exa-v35-latin-900.woff2") format("woff2");
}
/* ==========================================
   1. KONFIGURACJA I ZMIENNE
   ========================================== */
/* ==========================================
   2. RESET I GLOBALNE STYLE
   ========================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #f3f4f6;
  color: #111827;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

button:hover {
  background-color: #0f172a;
  color: #ffffff;
  border-color: #000000;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}
button:hover .icon {
  stroke: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.icon {
  display: block;
  width: 2rem;
  height: 2rem;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}

.text-primary {
  color: #fbbf24;
}

.highlight {
  background-color: #fbbf24;
  color: #111827;
  padding: 0 0.5rem;
}

.highlight-italic {
  background-color: #111827;
  color: #ffffff;
  padding: 0 0.5rem;
  font-style: italic;
}

.wrapper {
  position: relative;
  max-width: 1400px;
  width: 100%;
  padding: 0 5%;
  margin: 0 auto;
  z-index: 10;
}

.triangle {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  width: 3rem;
  height: 3rem;
  color: #fbbf24;
  opacity: 0.2;
  transform: rotate(12deg);
  z-index: 1;
}

.circle {
  position: absolute;
  bottom: 5rem;
  left: -5rem;
  width: 16rem;
  height: 16rem;
  background-color: rgba(251, 191, 36, 0.1);
  border-radius: 50%;
  z-index: 0;
}

h3 {
  font-family: "Lexend Exa", "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  line-height: 1.1;
  color: #111827;
}

a:hover {
  background-color: #0f172a;
  color: #ffffff;
  border-color: #000000;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}
a:hover .icon {
  stroke: #ffffff;
}

/* ==========================================
   3. KOMPONENTY (NAV, BTN, FORM, POPUP)
   ========================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(243, 244, 246, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0.5rem 0;
  transition: background-color 0.3s, border-color 0.3s;
}
.nav__mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 102;
}
.nav__logo {
  line-height: 1;
  font-family: "Lexend Exa", "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 1rem;
  text-align: center;
  letter-spacing: -0.05em;
  position: relative;
  z-index: 102;
  color: #111827;
  transition: color 0.3s;
}
.nav__logo .logo {
  font-size: 1.5rem;
}
.nav__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  width: 3rem;
  height: 3rem;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 102;
  transition: color 0.3s;
}
.nav__toggle .icon {
  width: 2.5rem;
  height: 2.5rem;
}
.nav__toggle .icon line {
  transform-origin: center;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  stroke: currentColor;
}
.nav__overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  background-color: #0f172a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s, visibility 0.4s;
  z-index: 101;
}
.nav__bg-decor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  font-family: "Lexend Exa", "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 20vw;
  color: #ffffff;
  opacity: 0.03;
  pointer-events: none;
  white-space: nowrap;
}
.nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  width: 100%;
}
.nav__link {
  font-family: "Lexend Exa", "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  transition: color 0.3s, transform 0.3s;
}
.nav__link:hover {
  color: #fbbf24;
}
.nav__link--cta {
  color: #fbbf24;
  font-style: italic;
}
.nav--active {
  background-color: transparent;
  border-bottom-color: transparent;
}
.nav--active .nav__overlay {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.nav--active .nav__logo,
.nav--active .nav__toggle {
  color: #ffffff;
}
.nav--active .nav__burger-icon .line-top {
  transform: translateY(6px) rotate(45deg);
}
.nav--active .nav__burger-icon .line-middle {
  opacity: 0;
}
.nav--active .nav__burger-icon .line-bottom {
  transform: translateY(-3px) rotate(-45deg);
}
.nav__desktop {
  display: none;
}

.btn {
  background-color: #fbbf24;
  color: #000000;
  font-family: "Lexend Exa", "Montserrat", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  padding: 1.25rem 2rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: all 0.3s ease-in-out;
  border-radius: 0.5rem;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:hover .btn__icon {
  transform: translateX(4px);
}
.btn__icon {
  display: flex;
  transition: transform 0.3s ease-in-out;
}
.btn__icon .icon {
  width: 1.5rem;
  height: 1.5rem;
}
.btn--thick {
  background-color: #fbbf24;
  border: 4px solid #000000;
  font-size: 1.125rem;
  border-radius: 0;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
}
.btn--submit {
  justify-content: center;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(251, 191, 36, 0.2);
  font-style: normal;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 32rem;
  margin: 0 auto;
  width: 100%;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}
.form__group:has(:invalid:focus) .form__label {
  color: #ef4444;
  animation: shake 0.4s ease-in-out;
}
.form__label {
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
  transition: color 0.3s ease;
}
.form__input, .form__textarea {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #e5e7eb;
  padding: 0.75rem 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  border-radius: 0;
  color: #111827;
}
.form__input::-moz-placeholder, .form__textarea::-moz-placeholder {
  color: #374151;
  opacity: 0.7;
  -moz-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.form__input::placeholder, .form__textarea::placeholder {
  color: #374151;
  opacity: 0.7;
  transition: color 0.3s ease;
}
.form__input:focus, .form__textarea:focus {
  border-color: #fbbf24;
}
.form__input:invalid:focus, .form__textarea:invalid:focus {
  border-bottom-color: #ef4444;
  animation: shake 0.4s ease-in-out;
  box-shadow: none;
}
.form__input:invalid:focus::-moz-placeholder, .form__textarea:invalid:focus::-moz-placeholder {
  color: #ef4444;
  opacity: 1;
}
.form__input:invalid:focus::placeholder, .form__textarea:invalid:focus::placeholder {
  color: #ef4444;
  opacity: 1;
}
.form__textarea {
  resize: vertical;
  min-height: 100px;
}
.form__select-wrapper {
  position: relative;
}
.form__select-wrapper::after {
  content: "▼";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  pointer-events: none;
  color: #374151;
}
.form__select {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-family: inherit;
  outline: none;
  cursor: pointer;
  color: #111827;
  transition: border-color 0.2s;
}
.form__select:focus {
  border-color: #fbbf24;
}
.form__select:invalid:focus {
  border-color: #ef4444;
  color: #ef4444;
  animation: shake 0.4s ease-in-out;
}
.form__checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.form__pill {
  cursor: pointer;
  position: relative;
}
.form__pill-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  cursor: pointer;
}
.form__pill-input:invalid:focus {
  outline: none;
}
.form__pill-text {
  display: block;
  padding: 0.5rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.2s;
  background-color: transparent;
  color: #111827;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.form__pill-input:checked + .form__pill-text {
  background-color: #fbbf24;
  border-color: #fbbf24;
  color: #111827;
  box-shadow: 0 4px 6px -1px rgba(251, 191, 36, 0.3);
}
.form__pill:hover .form__pill-input:not(:checked) + .form__pill-text {
  border-color: #374151;
  background-color: rgba(251, 191, 36, 0.1);
}
.form__legal {
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}
.form__checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.form__checkbox-wrapper:hover .form__checkbox-custom {
  border-color: #fbbf24;
}
.form__checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.form__checkbox:checked ~ .form__checkbox-custom {
  background-color: #fbbf24;
  border-color: #fbbf24;
}
.form__checkbox:checked ~ .form__checkbox-custom svg {
  opacity: 1;
  transform: scale(1);
}
.form__checkbox:invalid:focus + .form__checkbox-custom {
  border-color: #ef4444;
  animation: shake 0.4s ease-in-out;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}
.form__checkbox:invalid:focus ~ .form__legal-text {
  color: #ef4444;
}
.form__checkbox-custom {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #e5e7eb;
  border-radius: 4px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.form__checkbox-custom svg {
  width: 0.8rem;
  height: 0.8rem;
  color: #111827;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.form__legal-text {
  font-size: 0.75rem;
  color: #374151;
  line-height: 1.4;
  transition: color 0.3s;
}
.form__link {
  font-weight: 700;
  text-decoration: underline;
  color: #111827;
  transition: color 0.2s;
}
.form__link:hover {
  color: #fbbf24;
}

.popup {
  position: fixed;
  inset: 0;
  background-color: rgba(17, 24, 39, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.popup--active {
  opacity: 1;
  visibility: visible;
}
.popup__content {
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 1rem;
  text-align: center;
  border-bottom: 5px solid #fbbf24;
  max-width: 90%;
  width: 400px;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.popup--active .popup__content {
  transform: translateY(0);
}
.popup__icon {
  font-size: 3rem;
  color: #fbbf24;
  margin-bottom: 1rem;
}
.popup__text {
  font-family: "Lexend Exa", "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  text-transform: uppercase;
  color: #111827;
}
.popup__subtext {
  color: #374151;
  margin-top: 0.5rem;
}

/* ==========================================
   4. SEKCJE (HERO, MARQUEE, PROCESS...)
   ========================================== */
.hero {
  position: relative;
  min-height: 100dvh;
  padding-top: 5rem;
  padding-bottom: 3rem;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__bg-text {
  position: absolute;
  top: 2rem;
  left: 1rem;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  font-family: "Lexend Exa", "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 5rem;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
}
.hero__bg-text--outline {
  -webkit-text-stroke: 1px currentColor;
  color: transparent;
}
.hero__bg-dots {
  position: absolute;
  top: 5rem;
  right: 1.5rem;
  width: 5rem;
  height: 6rem;
  background-image: radial-gradient(#fbbf24 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.4;
  z-index: 1;
}
.hero__wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.hero__title {
  position: relative;
  z-index: 2;
  font-family: "Lexend Exa", "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hero__highlight {
  background-color: #fbbf24;
  color: #000000;
  padding: 0 0.5rem;
  display: inline-block;
  transform: rotate(-1deg);
}
.hero__description {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0;
  z-index: 2;
}
.hero__text {
  font-size: 1.125rem;
  font-weight: 500;
  color: #374151;
}
.hero__text--accent {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #fbbf24;
  text-decoration-thickness: 3px;
}
.hero__visual {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1/1;
  margin: 0 auto;
  z-index: 2;
}
.hero__visual-decor {
  position: absolute;
  inset: 0;
  background-color: #fbbf24;
  border-radius: 50%;
  transform: scale(1.05) translate(1rem, 0.5rem);
  opacity: 0.2;
}
.hero__visual-border {
  position: absolute;
  inset: 0;
  border: 4px solid #fbbf24;
  border-radius: 50%;
  transform: translate(-0.5rem, -0.5rem);
  z-index: 1;
}
.hero__figure {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #000000;
  z-index: 2;
}
.hero__img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
  transition: filter 0.3s ease-in-out;
}
.hero__img:hover {
  filter: grayscale(0%);
}
.hero__icon-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background-color: #fbbf24;
  padding: 0.75rem;
  border-radius: 50%;
  border: 2px solid #000000;
  z-index: 3;
  display: flex;
  color: #000000;
}
.hero__icon-badge .icon {
  width: 1.75rem;
  height: 1.75rem;
}
.hero .circle {
  right: 3%;
  bottom: 2%;
  left: 0;
}

.marquee {
  background-color: #fbbf24;
  padding: 1rem 0;
  width: 100%;
  border-top: 4px solid #000000;
  border-bottom: 4px solid #000000;
  overflow: hidden;
}
.marquee__content {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  animation: scroll 20s linear infinite;
}
.marquee__content:hover {
  animation-play-state: paused;
}
.marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.marquee__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Lexend Exa", "Montserrat", sans-serif;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: 0.875rem;
  padding: 0 1.5rem;
  color: #000000;
  white-space: nowrap;
}
.marquee__item .icon {
  width: 1.25rem;
  height: 1.25rem;
}
.marquee__dot {
  width: 6px;
  height: 6px;
  background-color: #000000;
  border-radius: 50%;
}

.process {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}
.process__decor-circle {
  position: absolute;
  bottom: 5rem;
  left: -5rem;
  width: 16rem;
  height: 16rem;
  background-color: rgba(251, 191, 36, 0.1);
  border-radius: 50%;
  z-index: 0;
}
.process__decor-dots {
  position: absolute;
  top: 20%;
  left: 2rem;
  width: 8rem;
  height: 8rem;
  background-image: radial-gradient(#fbbf24 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  opacity: 0.3;
  z-index: 0;
}
.process__wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.process__header {
  margin-bottom: 1rem;
}
.process__title {
  font-family: "Lexend Exa", "Montserrat", sans-serif;
  font-size: clamp(2.1rem, 4vw + 1rem, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 0.5rem;
}
.process__title .text-primary {
  color: #fbbf24;
}
.process__title-bar {
  width: 6rem;
  height: 6px;
  background-color: #fbbf24;
  margin-bottom: 1rem;
}
.process__subtitle {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.6;
}
.process__grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.process__cta {
  margin-top: 2rem;
  text-align: center;
}
.process .circle {
  left: 0;
  bottom: -2%;
  right: 10%;
}

.process-step {
  position: relative;
  padding-top: 1.5rem;
  padding-left: 0;
  margin-bottom: 3rem;
}
.process-step__number {
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(17, 24, 39, 0.2);
  opacity: 0.5;
  transition: color 1s ease-out, -webkit-text-stroke-color 1s ease-out, opacity 1s ease-out, transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 0;
  pointer-events: none;
  transform: translateY(20px);
}
.process-step.is-visible .process-step__number {
  color: rgba(251, 191, 36, 0.15);
  opacity: 1;
  transform: translateY(0);
}
.process-step__content {
  position: relative;
  z-index: 1;
  padding-left: 1rem;
}
.process-step__head {
  text-align: left;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}
.process-step__title {
  font-family: "Lexend Exa", "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  line-height: 1.1;
  color: #111827;
}
.process-step__desc {
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 90%;
}
.process-step__progress {
  display: flex;
  gap: 0.25rem;
}
.process-step__progress span {
  height: 4px;
  display: block;
  border-radius: 2px;
}
.process-step__progress .w-long {
  width: 2.5rem;
  background-color: #fbbf24;
}
.process-step__progress .w-med {
  width: 1.5rem;
  background-color: rgba(0, 0, 0, 0.1);
}
.process-step__progress .w-short {
  width: 0.75rem;
  background-color: rgba(0, 0, 0, 0.1);
}

.about {
  position: relative;
  background-color: #ffffff;
  padding: 5rem 0;
  overflow: hidden;
}
.about__decor-triangle {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  width: 3rem;
  height: 3rem;
  color: #fbbf24;
  opacity: 0.2;
  transform: rotate(12deg);
  z-index: 1;
}
.about__wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.about__header {
  position: relative;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
}
.about__title {
  font-family: "Lexend Exa", "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  position: relative;
  z-index: 2;
}
.about__title-underline {
  position: absolute;
  bottom: 0.2rem;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background-color: #fbbf24;
  opacity: 0.5;
  z-index: 1;
}
.about__grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}
.about__visual {
  position: relative;
  width: 16rem;
  height: 16rem;
}
.about__circle-bg {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  width: 100%;
  height: 100%;
  background-color: #fbbf24;
  border-radius: 50%;
}
.about__circle-dashed {
  position: absolute;
  inset: -1rem;
  border: 2px dashed #9ca3af;
  border-radius: 50%;
  animation: spin 20s linear infinite;
}
.about__figure {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #ffffff;
  z-index: 2;
}
.about__img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
}
.about__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about__lead {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.about__dropcap {
  font-family: "Lexend Exa", "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 3.75rem;
  color: #fbbf24;
  line-height: 1;
}
.about .circle {
  left: 0;
  right: 4%;
  bottom: 5%;
}

.status-bar {
  margin-top: 1rem;
  padding: 1rem 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
.status-bar__item {
  font-weight: 900;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #111827;
  opacity: 0.5;
  transition: color 10s ease, transform 10s ease, opacity 10s ease;
  animation: highlight-pulse 10s infinite;
}
.status-bar__item--active {
  color: inherit;
  opacity: inherit;
}
.status-bar__item:nth-child(1) {
  animation-delay: 1.5s;
}
.status-bar__item:nth-child(2) {
  animation-delay: 3s;
}
.status-bar__item:nth-child(3) {
  animation-delay: 4.5s;
}
.status-bar__item:nth-child(4) {
  animation-delay: 6s;
}
.status-bar__item:nth-child(5) {
  animation-delay: 7.5s;
}

.advantages {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.advantages__wrapper {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}
.advantages__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.advantages__avatar-box {
  position: relative;
  width: 12rem;
  height: 12rem;
  margin-bottom: 1rem;
}
.advantages__avatar-bg {
  position: absolute;
  inset: 0;
  background-color: #fbbf24;
  border-radius: 50%;
  transform: translate(0.5rem, 0.5rem);
}
.advantages__avatar-border {
  position: absolute;
  inset: 0;
  border: 4px solid #111827;
  border-radius: 50%;
  z-index: 2;
}
.advantages__figure {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}
.advantages__img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
}
.advantages__title {
  font-family: "Lexend Exa", "Montserrat", sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
}
.advantages__desc {
  color: #374151;
  font-size: 1rem;
  max-width: 24rem;
  line-height: 1.6;
}
.advantages__grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.advantage-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.advantage-item__icon-box {
  background-color: #fbbf24;
  padding: 0.75rem;
  border-radius: 0.5rem;
  color: #111827;
}
.advantage-item__icon-box .icon {
  width: 1.5rem;
  height: 1.5rem;
}
.advantage-item__content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.advantage-item__title {
  font-family: "Lexend Exa", "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
}
.advantage-item__text {
  color: #374151;
}

.services {
  position: relative;
  background-color: #0f172a;
  color: #ffffff;
  padding: 6rem 0;
  overflow: hidden;
}
.services__bg-text {
  position: absolute;
  top: 0;
  right: 0;
  font-family: "Lexend Exa", "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 6rem;
  opacity: 0.03;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  pointer-events: none;
  -webkit-text-stroke: 1px currentColor;
  color: transparent;
  z-index: 0;
}
.services__decor-grid {
  position: absolute;
  top: 10%;
  left: -10%;
  width: 60%;
  height: 80%;
  opacity: 0.05;
  color: #fbbf24;
  z-index: 0;
  pointer-events: none;
  transform: skewY(-5deg);
}
.services__decor-circle-large {
  position: absolute;
  bottom: -5rem;
  right: -5rem;
  width: 25rem;
  height: 25rem;
  color: #fbbf24;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
  animation: spin 60s linear infinite;
}
.services__decor-plus {
  position: absolute;
  font-family: "Lexend Exa", "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: #fbbf24;
  opacity: 0.3;
  z-index: 0;
}
.services__decor-plus--1 {
  top: 15%;
  left: 10%;
}
.services__decor-plus--2 {
  bottom: 20%;
  right: 25%;
}
.services__wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.services__header {
  position: relative;
  margin-bottom: 1rem;
}
.services__title-bar {
  width: 5rem;
  height: 0.5rem;
  background-color: #fbbf24;
  margin-bottom: 1.5rem;
}
.services__title {
  font-family: "Lexend Exa", "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.05em;
}
.services__list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.service-card__visual {
  position: relative;
  width: 8rem;
  height: 8rem;
  flex-shrink: 0;
}
.service-card__visual-bg {
  position: absolute;
  inset: 0;
  background-color: #fbbf24;
  border-radius: 50%;
  transform: translate(0.5rem, 0.5rem);
}
.service-card__visual-border {
  position: absolute;
  inset: 0;
  border: 2px solid #ffffff;
  border-radius: 50%;
  z-index: 2;
}
.service-card__figure {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
  filter: grayscale(100%) contrast(125%);
  transition: filter 0.3s;
}
.service-card:hover .service-card__figure {
  filter: grayscale(0%) contrast(100%);
}
.service-card__img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.service-card__decor-dots {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 3rem;
  height: 3rem;
  background-image: radial-gradient(#fbbf24 1.5px, transparent 1.5px);
  background-size: 8px 8px;
  opacity: 0.4;
  z-index: 3;
}
.service-card__decor-dots--top {
  bottom: auto;
  right: auto;
  top: -1rem;
  left: -1rem;
}
.service-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service-card__title {
  font-family: "Lexend Exa", "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: #f3f4f6;
  max-width: 60%;
}
.service-card__divider {
  width: 3rem;
  height: 4px;
  background-color: #fbbf24;
  margin-bottom: 1rem;
}
.service-card__desc {
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.6;
  max-width: 20rem;
}

.contact {
  padding: 5rem 0;
}
.contact__wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.contact__header {
  text-align: center;
  margin-bottom: 1rem;
}
.contact__subtitle {
  display: block;
  font-family: "Lexend Exa", "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fbbf24;
  margin-bottom: 0.5rem;
}
.contact__title {
  font-family: "Lexend Exa", "Montserrat", sans-serif;
  font-size: 2.25rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
}
.contact__title .highlight-italic {
  background-color: #fbbf24;
  color: #111827;
}
.contact__direct {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact__card {
  background-color: #ffffff;
  border: 2px solid #111827;
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.contact__card-icon {
  color: #fbbf24;
}
.contact__card-icon .icon {
  width: 1.5rem;
  height: 1.5rem;
}
.contact__card-text {
  font-family: "Lexend Exa", "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.footer {
  background-color: #0f172a;
  color: #ffffff;
  padding: 4rem 0 3rem;
  border-top: 1px solid #374151;
  text-align: center;
}
.footer__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.footer__wrapper a {
  color: #f3f4f6;
}
.footer__logo {
  font-family: "Lexend Exa", "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.05em;
}
.footer__socials {
  display: flex;
  gap: 1.5rem;
}
.footer__social-link {
  width: 4rem;
  height: 4rem;
  border: 1px solid #374151;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}
.footer__social-link:hover {
  background-color: #e5e7eb;
}
.footer__social-icon {
  width: 2.5rem;
  height: 2.5rem;
}
.footer__social-icon svg {
  fill: #f3f4f6;
}
.footer__bottom {
  width: 100%;
  border-top: 1px solid #374151;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.footer__url {
  font-family: "Lexend Exa", "Montserrat", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
}
.footer__dots {
  display: flex;
  gap: 1rem;
}
.footer__dots::before, .footer__dots::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: #9ca3af;
  border-radius: 50%;
  opacity: 0.2;
}

.legal {
  padding: 4rem 0;
  min-height: 100vh;
  background-color: #f3f4f6;
  color: #111827;
}
.legal__wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.legal__nav {
  margin-bottom: 1rem;
}
.legal__back-btn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}
.legal__header {
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 2rem;
}
.legal__title {
  font-family: "Lexend Exa", "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.legal__subtitle {
  font-size: 0.875rem;
  color: #374151;
  font-family: "Lexend Exa", "Montserrat", sans-serif;
}
.legal__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  font-size: 1rem;
  line-height: 1.7;
}
.legal__section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.legal__heading {
  font-family: "Lexend Exa", "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 1rem;
  position: relative;
  padding-left: 1rem;
}
.legal__heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 4px;
  background-color: #fbbf24;
}
.legal__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-left: 1rem;
}
.legal__list li {
  position: relative;
  padding-left: 1.5rem;
}
.legal__list li::before {
  content: "•";
  color: #fbbf24;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
  line-height: 1.6;
}
.legal__box {
  background-color: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.3);
  padding: 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.95rem;
}
.legal__box a {
  text-decoration: underline;
}
.legal__box a:hover {
  color: rgb(47.9642857143, 67.7142857143, 110.0357142857);
}
.legal__footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  font-size: 0.875rem;
  color: #374151;
}

/* ==========================================
   5. ANIMACJE
   ========================================== */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes highlight-pulse {
  0% {
    color: #111827;
    opacity: 0.3;
  }
  10% {
    color: #fbbf24;
    opacity: 1;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
  }
  20% {
    color: #111827;
    opacity: 0.3;
    text-shadow: none;
  }
  100% {
    color: #111827;
    opacity: 0.3;
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-4px);
  }
  75% {
    transform: translateX(4px);
  }
}
/* ==========================================
   6. MEDIA QUERIES
   ========================================== */
/* TABLET (768px+) */
@media (min-width: 760px) {
  .nav__toggle {
    margin: 0;
  }
  button {
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: 0 auto;
  }
  .hero {
    padding-top: 9rem;
    padding-bottom: 6rem;
  }
  .hero__wrapper {
    gap: 4rem;
    align-items: center;
  }
  .hero__visual {
    max-width: 500px;
  }
  .hero__description {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }
  .hero__bg-text {
    font-size: 8rem;
    top: 4rem;
  }
  .about__grid {
    flex-direction: row-reverse;
  }
  .about__visual {
    min-width: 35%;
  }
  .process__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem 4rem;
  }
  .advantages__wrapper {
    flex-direction: row;
  }
  .advantages__header {
    min-width: 50%;
  }
  .services .wrapper .services__list {
    flex-direction: row;
  }
}
/* DESKTOP (1200px+) */
@media (min-width: 1200px) {
  .btn {
    width: -moz-max-content;
    width: max-content;
  }
  .nav__mobile {
    display: none;
  }
  .nav__desktop {
    display: block;
  }
  .nav .nav-desktop__wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.5rem 5%;
  }
  .nav .nav-desktop__logo {
    font-family: "Lexend Exa", "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
    color: #111827;
  }
  .nav .nav-desktop__list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 3rem;
  }
  .nav .nav-desktop__link {
    font-family: "Lexend Exa", "Montserrat", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #111827;
    transition: color 0.3s ease;
    position: relative;
  }
  .nav .nav-desktop__link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #fbbf24;
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }
  .nav .nav-desktop__link:hover {
    color: #fbbf24;
  }
  .nav .nav-desktop__link:hover::after {
    width: 100%;
  }
  .nav .nav-desktop__link--cta {
    background-color: #fbbf24;
    padding: 0.8rem 1.8rem;
    border-radius: 0.5rem;
    font-style: italic;
    transition: transform 0.3s, background-color 0.3s;
  }
  .nav .nav-desktop__link--cta::after {
    display: none;
  }
  .nav .nav-desktop__link--cta:hover {
    background-color: #111827;
    color: #ffffff;
    transform: translateY(-2px);
  }
  .hero {
    display: flex;
    align-items: center;
    padding-top: 6rem;
    overflow: visible;
  }
  .hero__wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-areas: "title visual" "description visual";
    -moz-column-gap: 5rem;
         column-gap: 5rem;
    align-items: center;
  }
  .hero__title {
    grid-area: title;
    text-align: left;
    align-self: end;
    margin-bottom: 1.5rem;
    max-width: 15ch;
  }
  .hero__description {
    grid-area: description;
    text-align: left;
    align-self: start;
    margin: 0;
  }
  .hero__visual {
    grid-area: visual;
    width: 100%;
    max-width: 580px;
    margin: 0;
    justify-self: center;
  }
  .hero__visual-decor {
    transform: scale(1.1) translate(2rem, 1rem);
  }
  .hero__bg-text {
    font-size: 15rem;
    top: 5%;
    left: -2%;
    opacity: 0.02;
  }
  .hero__bg-dots {
    width: 12rem;
    height: 14rem;
    top: 10%;
    right: 5%;
  }
  .about__grid {
    align-items: center;
  }
  .about__content {
    max-width: 40%;
  }
  .about__visual {
    position: relative;
    width: 16rem;
    height: 27rem;
  }
  .services__list {
    justify-content: center;
  }
  .services__title {
    margin: 0 auto;
    max-width: 15ch;
  }
  .contact__title {
    margin: 0 auto;
    max-width: 15ch;
  }
}
.error-page {
  position: relative;
  min-height: 100vh;
  background-color: #0f172a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.error-page__wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}
.error-page__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  max-width: 600px;
}
.error-page__code {
  font-family: "Lexend Exa", "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(6rem, 15vw, 12rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: #ffffff;
  text-shadow: 4px 4px 0px rgba(251, 191, 36, 0.2);
}
.error-page__title {
  font-family: "Lexend Exa", "Montserrat", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
}
.error-page__desc {
  font-size: 1.125rem;
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.error-page__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Lexend Exa", "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 30vw;
  color: #fbbf24;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}
.error-page__decor-circle {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 40vw;
  height: 40vw;
  background-color: #fbbf24;
  opacity: 0.1;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}/*# sourceMappingURL=main.css.map */