@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

* {
  box-sizing: border-box;
}

:root {
  --container-max: 1440px;
  --container-pad: clamp(20px, 4vw, 48px);
  --gold-main-colur: #e9c176;
  --gold-accent-colour: #e6c16d;
  --first-main-colour: #FFFFFF;
  --soft-white-colour: #f5f5f5;
  --secound-main-colour: #70D5E3;
  --blue-accent-colour: #72dbf1;
  --description-main-colour: #BDC9CA;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #000;
  color: var(--first-main-colour);
  font-family: 'Space Grotesk', sans-serif;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

/* =========================
   KEYFRAMES
========================= */

@keyframes dot-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.78);
  }
}

@keyframes ring-orbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes ring-orbit-rev {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@keyframes reveal-line {
  from {
    transform: scaleX(0);
    opacity: 0;
  }

  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

/* =========================
   LOGO INTRO
========================= */

.logo-splash {
  --logo-dx: 0px;
  --logo-dy: 0px;
  --logo-scale: 1;
  --logo-start-scale: 1.18;
  /* było 1 */

  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) translate(0, 0) scale(var(--logo-start-scale));
  transition: opacity 0.35s ease;
  will-change: transform, opacity;
}

.logo-splash img {
  display: block;
  width: auto;
  height: 8.8vh;
}

.logo-splash.is-visible {
  opacity: 0.4;
}

.logo-splash.is-animating {
  transform:
    translate(-50%, -50%) translate(var(--logo-dx), var(--logo-dy)) scale(var(--logo-scale));
  transition:
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s ease;
}

.logo-splash.is-done {
  opacity: 0;
}

/* =========================
   HEADER / NAV
========================= */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12vh;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  z-index: 20;
  background: transparent;
  pointer-events: none;
}

.site-header.is-ready {
  pointer-events: auto;
}

.nav-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.logo.is-visible {
  opacity: 1;
}

.logo img {
  display: block;
  width: auto;
  height: 3.4vh;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 2vw;
  opacity: 0;
  transform: translateY(-0.8vh);
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-ready .nav-actions {
  opacity: 1;
  transform: translateY(0);
}

.contact-btn {
  width: clamp(120px, 16vw, 236px);
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999vw;
  text-decoration: none;
  background: var(--secound-main-colour);
  color: #000;
  font-size: 1.45vh;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease;
}

.contact-btn:hover {
  transform: translateY(-0.25vh);
  box-shadow: 0 0.5vh 1.8vh rgba(126, 217, 236, 0.32);
}

.menu-toggle {
  width: clamp(28px, 3vw, 44px);
  height: clamp(28px, 3vw, 44px);
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.45vh;
}

.menu-toggle span {
  display: block;
  width: clamp(20px, 2.3vw, 33px);
  height: 0.22vh;
  margin-left: auto;
  border-radius: 999vw;
  background: var(--first-main-colour);
}

/* =========================
   HERO
========================= */

.hero-web {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: #000;
}

.hero-web__video,
.hero-web__overlay,
.hero-web__noise {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-web__video {
  z-index: 1;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}

.hero-web__overlay {
  z-index: 2;
  background:
    linear-gradient(90deg,
      rgba(0, 0, 0, 0.84) 0%,
      rgba(0, 0, 0, 0.68) 24%,
      rgba(0, 0, 0, 0.34) 52%,
      rgba(0, 0, 0, 0.56) 100%),
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.16) 0%,
      rgba(0, 0, 0, 0.08) 45%,
      rgba(0, 0, 0, 0.56) 100%);
}

/* Płynne przejście hero → pierwsza sekcja */
.hero-web::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 18%;
  background: linear-gradient(to bottom, transparent 0%, #050505 100%);
  z-index: 5;
  pointer-events: none;
}

.hero-web__noise {
  z-index: 3;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 7% 12%, rgba(255, 255, 255, 0.78) 0.04vw, transparent 0.08vw),
    radial-gradient(circle at 13% 27%, rgba(255, 255, 255, 0.58) 0.04vw, transparent 0.08vw),
    radial-gradient(circle at 21% 9%, rgba(255, 255, 255, 0.52) 0.04vw, transparent 0.08vw),
    radial-gradient(circle at 33% 17%, rgba(255, 255, 255, 0.66) 0.04vw, transparent 0.08vw),
    radial-gradient(circle at 44% 8%, rgba(255, 255, 255, 0.54) 0.04vw, transparent 0.08vw),
    radial-gradient(circle at 57% 19%, rgba(255, 255, 255, 0.48) 0.04vw, transparent 0.08vw),
    radial-gradient(circle at 69% 11%, rgba(255, 255, 255, 0.44) 0.04vw, transparent 0.08vw),
    radial-gradient(circle at 81% 24%, rgba(255, 255, 255, 0.58) 0.04vw, transparent 0.08vw),
    radial-gradient(circle at 92% 14%, rgba(255, 255, 255, 0.62) 0.04vw, transparent 0.08vw),
    radial-gradient(circle at 87% 39%, rgba(255, 255, 255, 0.44) 0.04vw, transparent 0.08vw);
}

.hero-web__content {
  position: absolute;
  top: 18vh;
  left: var(--container-pad);
  width: min(58vw, 860px);
  z-index: 4;
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-web__content.is-hidden {
  opacity: 0;
  transform: translateY(2vh);
  pointer-events: none;
}

.hero-web__content.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-web__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6vw;
  height: 3.2vh;
  padding: 0 1vw;
  border: 0.08vw solid var(--gold-main-colur);
  border-radius: 999vw;
  background: rgba(0, 0, 0, 0.28);
  color: var(--gold-main-colur);
  font-size: 1.18vh;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 2.8vh;
  backdrop-filter: blur(0.4vw);
}

.hero-web__badge-dot {
  width: 0.42vw;
  height: 0.42vw;
  border-radius: 50%;
  background: var(--gold-main-colur);
  flex: 0 0 auto;
  animation: dot-pulse 2.6s ease-in-out infinite;
}

.hero-web__title {
  margin: 0;
  width: min(56vw, 808px);
  line-height: 0.92;
  letter-spacing: -0.11vw;
}

.hero-web__title-line {
  display: block;
}

.hero-web__title-line--white,
.hero-web__title-line--blue {
  font-size: clamp(48px, 6.2vw, 96px);
  font-weight: 700;
}

.hero-web__title-line--white {
  color: var(--first-main-colour);
  letter-spacing: -4.8px;
  line-height: 96%;
}

.hero-web__title-line--blue {
  color: var(--secound-main-colour);
  margin-top: 0.6vh;
}

.hero-web__description {
  width: min(50vw, 720px);
  margin: 3vh 0 0;
  color: var(--first-main-colour);
  font-size: 20px;
  line-height: 1.38;
  font-weight: 400;

}

.hero-web__bottom {
  display: flex;
  align-items: flex-start;
  gap: 1.4vw;
  margin-top: 8vh;
}

.hero-web__button {
  width: 256px;
  height: 60px;
  border-radius: 10px;
  background: var(--secound-main-colour);
  color: #000;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease;
}

.hero-web__button:hover {
  transform: translateY(-0.3vh);
  box-shadow: 0 0.8vh 2.6vh rgba(117, 215, 234, 0.38);
}

.hero-web__meta {
  width: 420px;

}

.hero-web__meta-title {
  margin: 0 0 0.7vh;
  color: var(--description-main-colour);
  font-size: 12px;
  font-weight: 500;
}

.hero-web__meta-text {
  margin: 0;
  color: var(--first-main-colour);
  font-size: 1.38vh;
  line-height: 1.45;
}

/* =========================
   WHY WEB SECTION
========================= */

.why-web {
  position: relative;
  width: 100%;
  padding: 10vh var(--container-pad) 10vh;
  background:
    radial-gradient(circle at 0% 100%, rgba(168, 103, 33, 0.16) 0%, rgba(168, 103, 33, 0) 28%),
    linear-gradient(180deg, #050505 0%, #090909 100%);
  overflow: hidden;
}

.why-web::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 255, 255, 0.75) 0.04vw, transparent 0.08vw),
    radial-gradient(circle at 17% 34%, rgba(255, 255, 255, 0.38) 0.04vw, transparent 0.08vw),
    radial-gradient(circle at 29% 14%, rgba(255, 255, 255, 0.24) 0.04vw, transparent 0.08vw),
    radial-gradient(circle at 43% 20%, rgba(255, 255, 255, 0.22) 0.04vw, transparent 0.08vw),
    radial-gradient(circle at 56% 12%, rgba(255, 255, 255, 0.18) 0.04vw, transparent 0.08vw),
    radial-gradient(circle at 71% 24%, rgba(255, 255, 255, 0.22) 0.04vw, transparent 0.08vw),
    radial-gradient(circle at 87% 17%, rgba(255, 255, 255, 0.28) 0.04vw, transparent 0.08vw);
}

.why-web::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 14%;
  background: linear-gradient(to bottom, transparent 0%, #040404 100%);
  z-index: 2;
  pointer-events: none;
}

.why-web__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.why-web__intro {
  width: 100%;
  max-width: 760px;
  margin-bottom: 6vh;
}

.why-web__title {
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.06vw;
}

.why-web__title-line {
  display: block;
}

.why-web__title-line--white,
.why-web__title-line--gold,
.why-web__title-line--blue {
  font-size: clamp(28px, 4.1vw, 60px);
  font-weight: 800;
}

.why-web__title-line--white {
  color: var(--first-main-colour);
}

.why-web__title-line--gold {
  color: var(--gold-main-colur)
}

.why-web__title-line--blue {
  color: var(--secound-main-colour)
}

.why-web__description {
  width: 100%;
  max-width: 770px;
  margin: 3.2vh 0 0;
  color: var(--description-main-colour);
  font-size: clamp(15px, 1.75vw, 25px);
  line-height: 1.38;
  font-weight: 400;
}

.why-web__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4vw;
}

.why-card {
  min-height: 31vh;
  padding: 3.4vh 2.2vw 3.4vh;
  border-radius: 1.1vw;
  background: rgba(22, 22, 24, 0.88);
  border: 0.05vw solid rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 0 0 0.03vw rgba(255, 255, 255, 0.02),
    0 1.2vw 3vw rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(0.35vw);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.why-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow:
    inset 0 0 0 0.03vw rgba(255, 255, 255, 0.04),
    0 1.8vw 4vw rgba(0, 0, 0, 0.28),
    0 0 2.2vw rgba(114, 219, 241, 0.06);
}

.why-card__icon {
  width: clamp(22px, 2.4vw, 34px);
  height: clamp(22px, 2.4vw, 34px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3.2vh;
}

.why-card__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card__icon--gold svg {
  stroke: var(--gold-accent-colour);
}

.why-card__icon--blue svg {
  stroke: var(--blue-accent-colour);
}

.why-card__title {
  margin: 0 0 2.2vh;
  color: var(--first-main-colour);
  font-size: clamp(15px, 1.9vw, 27px);
  font-weight: 700;
  line-height: 1.1;
}

.why-card__text {
  margin: 0;
  color: var(--description-main-colour);
  font-size: clamp(13px, 1.4vw, 20px);
  line-height: 1.45;
  font-weight: 400;
}

/* =========================
   TABLET
========================= */

@media (max-width: 980px) {
  .why-web {
    padding: 8vh var(--container-pad) 8vh;
  }

  .why-web__intro {
    max-width: 100%;
    margin-bottom: 4.6vh;
  }

  .why-web__title-line--white,
  .why-web__title-line--gold,
  .why-web__title-line--blue {
    font-size: 6.8vw;
  }

  .why-web__description {
    max-width: 78vw;
    font-size: 2.5vw;
  }

  .why-web__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.2vw;
  }

  .why-card {
    min-height: 24vh;
    padding: 3vh 2.8vw 3vh;
    border-radius: 1.8vw;
  }

  .why-card__icon {
    width: 4.8vw;
    height: 4.8vw;
    margin-bottom: 2.4vh;
  }

  .why-card__title {
    font-size: 2.9vw;
    margin-bottom: 1.8vh;
  }

  .why-card__text {
    font-size: 2.1vw;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 640px) {
  .why-web {
    padding: 7vh var(--container-pad) 7vh;
  }

  .why-web__intro {
    margin-bottom: 3.8vh;
  }

  .why-web__title {
    letter-spacing: -0.12vw;
  }

  .why-web__title-line--white,
  .why-web__title-line--gold,
  .why-web__title-line--blue {
    font-size: 11.5vw;
  }

  .why-web__description {
    max-width: 88vw;
    margin-top: 2.4vh;
    font-size: 4.8vw;
    line-height: 1.38;
  }

  .why-web__grid {
    grid-template-columns: 1fr;
    gap: 2vh;
  }

  .why-card {
    min-height: auto;
    padding: 3vh 5vw;
    border-radius: 4vw;
  }

  .why-card__icon {
    width: 9vw;
    height: 9vw;
    margin-bottom: 2vh;
  }

  .why-card__title {
    font-size: 6.6vw;
    margin-bottom: 1.4vh;
  }

  .why-card__text {
    font-size: 4.5vw;
    line-height: 1.42;
  }
}

/* =========================
   PROCESS MINIMAL SECTION
========================= */

.process-minimal {
  position: relative;
  width: 100%;
  padding: 11vh var(--container-pad) 10vh;
  background:
    radial-gradient(circle at 0% 100%, rgba(166, 102, 35, 0.10) 0%, rgba(166, 102, 35, 0) 26%),
    linear-gradient(180deg, #040404 0%, #050505 100%);
  overflow: hidden;
}

.process-minimal::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background:
    radial-gradient(circle at 9% 14%, rgba(255, 255, 255, 0.52) 0.04vw, transparent 0.08vw),
    radial-gradient(circle at 17% 27%, rgba(255, 255, 255, 0.32) 0.04vw, transparent 0.08vw),
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.18) 0.04vw, transparent 0.08vw),
    radial-gradient(circle at 43% 11%, rgba(255, 255, 255, 0.16) 0.04vw, transparent 0.08vw),
    radial-gradient(circle at 61% 22%, rgba(255, 255, 255, 0.20) 0.04vw, transparent 0.08vw),
    radial-gradient(circle at 77% 15%, rgba(255, 255, 255, 0.18) 0.04vw, transparent 0.08vw),
    radial-gradient(circle at 91% 21%, rgba(255, 255, 255, 0.24) 0.04vw, transparent 0.08vw);
}

.process-minimal::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 14%;
  background: linear-gradient(to bottom, transparent 0%, #040404 100%);
  z-index: 2;
  pointer-events: none;
}

.process-minimal__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.process-minimal__intro {
  width: 100%;
  max-width: 760px;
  margin-bottom: 10vh;
}

.process-minimal__title {
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.08vw;
}

.process-minimal__title-line {
  display: block;
}

.process-minimal__title-line--white,
.process-minimal__title-line--blue {
  font-size: clamp(28px, 4.4vw, 64px);
  font-weight: 800;
}

.process-minimal__title-line--white {
  color: var(--first-main-colour);
}

.process-minimal__title-line--blue {
  color: var(--secound-main-colour);
  margin-top: 0.3vh;
}

  .process-minimal__description {
    width: 100%;
    max-width: 770px;
    margin: 3vh 0 0;
    color: var(--description-main-colour);
    font-size: 20px;
    line-height: 1.4;
    font-weight: 400;
  }

  .process-minimal__timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 4vw;
    row-gap: 2vh;
    padding-top: 0.8vh;
  }

  .process-minimal__line {
    position: absolute;
    top: 4.2vh;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
  }

  .process-step {
    position: relative;
  }

  .process-step__badge {
    width: clamp(44px, 5.6vw, 82px);
    height: 8.4vh;
    min-width: clamp(44px, 5.6vw, 82px);
    border-radius: 0.9vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5.2vh;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.04vw;
    position: relative;
    z-index: 2;
  }

  .process-step--dark .process-step__badge {
    background: #1c1b20;
    color: var(--first-main-colour);
  }

  .process-step--gold .process-step__badge {
    background: var(--gold-main-colur);
    color: #090909;
  }

  .process-step--blue .process-step__badge {
    background: var(--secound-main-colour);
    color: #071015;
    box-shadow:
      0 0 1.2vw rgba(111, 216, 238, 0.42),
      0 0 2.8vw rgba(111, 216, 238, 0.16);
  }

  .process-step__title {
    margin: 0 0 2vh;
    color: var(--first-main-colour);
    font-size: clamp(16px, 2.1vw, 30px);
    font-weight: 700;
    line-height: 1.08;
  }

  .process-step__text {
    width: 100%;
    max-width: 26vw;
    margin: 0;
    color: var(--description-main-colour);
    font-size: 16px;
    line-height: 1.48;
    font-weight: 400;
  }

  /* =========================
   TABLET
========================= */

  @media (max-width: 980px) {
    .process-minimal {
      padding: 9vh var(--container-pad) 8vh;
    }

    .process-minimal__intro {
      max-width: 100%;
      margin-bottom: 7vh;
    }

    .process-minimal__title-line--white,
    .process-minimal__title-line--blue {
      font-size: 7vw;
    }

    .process-minimal__description {
      max-width: 78vw;
      font-size: 2.5vw;
    }

    .process-minimal__timeline {
      column-gap: 3vw;
    }

    .process-minimal__line {
      top: 3.7vh;
    }

    .process-step__badge {
      width: 9vw;
      min-width: 9vw;
      height: 7vh;
      border-radius: 1.4vw;
      margin-bottom: 4.2vh;
      font-size: 3.4vw;
    }

    .process-step__title {
      font-size: 3.2vw;
      margin-bottom: 1.6vh;
    }

    .process-step__text {
      max-width: 100%;
      font-size: 2.05vw;
    }
  }

  /* =========================
   MOBILE
========================= */

  @media (max-width: 640px) {
    .process-minimal {
      padding: 7vh var(--container-pad) 7vh;
    }

    .process-minimal__intro {
      margin-bottom: 5vh;
    }

    .process-minimal__title {
      letter-spacing: -0.14vw;
    }

    .process-minimal__title-line--white,
    .process-minimal__title-line--blue {
      font-size: 11.5vw;
    }

    .process-minimal__description {
      max-width: 88vw;
      margin-top: 2.3vh;
      font-size: 4.8vw;
      line-height: 1.4;
    }

    .process-minimal__timeline {
      grid-template-columns: 1fr;
      row-gap: 3.2vh;
      padding-top: 0;
    }

    .process-minimal__line {
      display: none;
    }

    .process-step {
      padding-left: 0;
    }

    .process-step__badge {
      width: 20vw;
      min-width: 20vw;
      height: 6.8vh;
      border-radius: 3vw;
      margin-bottom: 2vh;
      font-size: 7vw;
    }

    .process-step__title {
      font-size: 6.6vw;
      margin-bottom: 1.2vh;
    }

    .process-step__text {
      max-width: 100%;
      font-size: 4.5vw;
      line-height: 1.42;
    }
  }


  /* =========================
   BRAND REFRESH SECTION
========================= */

  .brand-refresh {
    position: relative;
    width: 100%;
    padding: 11vh var(--container-pad) 10vh;
    background:
      radial-gradient(circle at 0% 100%, rgba(166, 102, 35, 0.10) 0%, rgba(166, 102, 35, 0) 28%),
      linear-gradient(180deg, #040404 0%, #050505 100%);
    overflow: hidden;
  }

  .brand-refresh::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.11;
    background:
      radial-gradient(circle at 8% 16%, rgba(255, 255, 255, 0.46) 0.04vw, transparent 0.08vw),
      radial-gradient(circle at 18% 31%, rgba(255, 255, 255, 0.24) 0.04vw, transparent 0.08vw),
      radial-gradient(circle at 27% 14%, rgba(255, 255, 255, 0.18) 0.04vw, transparent 0.08vw),
      radial-gradient(circle at 43% 22%, rgba(255, 255, 255, 0.14) 0.04vw, transparent 0.08vw),
      radial-gradient(circle at 59% 13%, rgba(255, 255, 255, 0.16) 0.04vw, transparent 0.08vw),
      radial-gradient(circle at 74% 20%, rgba(255, 255, 255, 0.18) 0.04vw, transparent 0.08vw),
      radial-gradient(circle at 89% 15%, rgba(255, 255, 255, 0.22) 0.04vw, transparent 0.08vw);
  }

  .brand-refresh::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 14%;
    background: linear-gradient(to bottom, transparent 0%, #030303 100%);
    z-index: 2;
    pointer-events: none;
  }

  .brand-refresh__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    column-gap: 4vw;
    align-items: center;
  }

  .brand-refresh__left {
    max-width: 34vw;
  }

  .brand-refresh__title {
    margin: 0;
    line-height: 0.95;
    letter-spacing: -0.08vw;
  }

  .brand-refresh__title-line {
    display: block;
  }

  .brand-refresh__title-line--white,
  .brand-refresh__title-line--gold {
    font-size: clamp(28px, 4.35vw, 63px);
    font-weight: 800;
  }

  .brand-refresh__title-line--white {
    color: var(--first-main-colour);
  }

  .brand-refresh__title-line--gold {
    color: var(--gold-main-colur);
  }

  .brand-refresh__description {
    max-width: 31vw;
    margin: 3.4vh 0 0;
    color: var(--description-main-colour);
    font-size: 20px;
    line-height: 1.45;
    font-weight: 400;
  }

  .brand-refresh__right {
    display: flex;
    flex-direction: column;
    gap: 2.2vh;
  }

  .brand-card {
    min-height: 20vh;
    padding: 3.2vh 3vw;
    border-radius: 1vw;
    background: rgba(24, 22, 24, 0.94);
    border: 0.05vw solid rgba(255, 255, 255, 0.04);
    box-shadow:
      inset 0 0 0 0.03vw rgba(255, 255, 255, 0.02),
      0 1.1vw 2.6vw rgba(0, 0, 0, 0.16);
    display: grid;
    grid-template-columns: 6.2vw minmax(0, 1fr);
    column-gap: 2.1vw;
    align-items: center;
    transition:
      transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
      border-color 0.35s ease,
      box-shadow 0.35s ease;
  }

  .brand-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow:
      inset 0 0 0 0.03vw rgba(255, 255, 255, 0.04),
      0 1.6vw 3.4vw rgba(0, 0, 0, 0.22);
  }

  .brand-card__icon {
    width: clamp(34px, 4.6vw, 66px);
    height: clamp(34px, 4.6vw, 66px);
    border-radius: 0.9vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .brand-card__icon svg {
    width: clamp(16px, 2.1vw, 30px);
    height: clamp(16px, 2.1vw, 30px);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .brand-card__icon--blue {
    background: rgba(93, 159, 173, 0.28);
  }

  .brand-card__icon--blue svg {
    stroke: var(--blue-accent-colour);
  }

  .brand-card__icon--gold {
    background: rgba(168, 131, 55, 0.26);
  }

  .brand-card__icon--gold svg {
    stroke: var(--gold-accent-colour);
  }

  .brand-card__title {
    margin: 0 0 1.4vh;
    color: var(--soft-white-colour);
    font-size: clamp(15px, 2.15vw, 31px);
    font-weight: 700;
    line-height: 1.08;
  }

  .brand-card__text {
    max-width: 29vw;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.45;
    font-weight: 400;
  }

  /* =========================
   TABLET
========================= */

  @media (max-width: 980px) {
    .brand-refresh {
      padding: 9vh var(--container-pad) 8vh;
    }

    .brand-refresh__inner {
      grid-template-columns: 1fr;
      row-gap: 5vh;
    }

    .brand-refresh__left {
      max-width: 100%;
    }

    .brand-refresh__title-line--white,
    .brand-refresh__title-line--gold {
      font-size: 7vw;
    }

    .brand-refresh__description {
      max-width: 78vw;
      font-size: 2.5vw;
    }

    .brand-card {
      min-height: 17vh;
      padding: 2.8vh 3vw;
      border-radius: 1.6vw;
      grid-template-columns: 10vw 1fr;
      column-gap: 2.8vw;
    }

    .brand-card__icon {
      width: 8vw;
      height: 8vw;
      border-radius: 1.6vw;
    }

    .brand-card__icon svg {
      width: 3.7vw;
      height: 3.7vw;
    }

    .brand-card__title {
      font-size: 3.2vw;
      margin-bottom: 1.1vh;
    }

    .brand-card__text {
      max-width: 100%;
      font-size: 2.05vw;
    }
  }

  /* =========================
   MOBILE
========================= */

  @media (max-width: 640px) {
    .brand-refresh {
      padding: 7vh var(--container-pad) 7vh;
    }

    .brand-refresh__inner {
      row-gap: 4vh;
    }

    .brand-refresh__title {
      letter-spacing: -0.14vw;
    }

    .brand-refresh__title-line--white,
    .brand-refresh__title-line--gold {
      font-size: 11.3vw;
    }

    .brand-refresh__description {
      max-width: 88vw;
      margin-top: 2.4vh;
      font-size: 4.8vw;
      line-height: 1.42;
    }

    .brand-card {
      min-height: auto;
      padding: 2.8vh 5vw;
      border-radius: 4vw;
      grid-template-columns: 18vw 1fr;
      column-gap: 4vw;
      align-items: start;
    }

    .brand-card__icon {
      width: 16vw;
      height: 16vw;
      border-radius: 3vw;
    }

    .brand-card__icon svg {
      width: 7vw;
      height: 7vw;
    }

    .brand-card__title {
      font-size: 6.4vw;
      margin-bottom: 1.1vh;
    }

    .brand-card__text {
      max-width: 100%;
      font-size: 4.35vw;
      line-height: 1.42;
    }
  }

  /* =========================
   SYSTEMS DESIGN SECTION
========================= */

  .systems-design {
    position: relative;
    width: 100%;
    padding: 11vh var(--container-pad) 10vh;
    background:
      radial-gradient(circle at 0% 100%, rgba(167, 103, 34, 0.10) 0%, rgba(167, 103, 34, 0) 28%),
      linear-gradient(180deg, #030303 0%, #050505 100%);
    overflow: hidden;
  }

  .systems-design::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.10;
    background:
      radial-gradient(circle at 8% 14%, rgba(255, 255, 255, 0.40) 0.04vw, transparent 0.08vw),
      radial-gradient(circle at 16% 26%, rgba(255, 255, 255, 0.22) 0.04vw, transparent 0.08vw),
      radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.16) 0.04vw, transparent 0.08vw),
      radial-gradient(circle at 41% 12%, rgba(255, 255, 255, 0.14) 0.04vw, transparent 0.08vw),
      radial-gradient(circle at 58% 20%, rgba(255, 255, 255, 0.16) 0.04vw, transparent 0.08vw),
      radial-gradient(circle at 76% 15%, rgba(255, 255, 255, 0.18) 0.04vw, transparent 0.08vw),
      radial-gradient(circle at 90% 22%, rgba(255, 255, 255, 0.22) 0.04vw, transparent 0.08vw);
  }

  .systems-design::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 14%;
    background: linear-gradient(to bottom, transparent 0%, #040404 100%);
    z-index: 2;
    pointer-events: none;
  }

  .systems-design__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    column-gap: 4vw;
    align-items: center;
  }

  .systems-design__left {
    max-width: 38vw;
  }

  .systems-design__title {
    margin: 0;
    line-height: 0.95;
    letter-spacing: -0.08vw;
  }

  .systems-design__title-line {
    display: block;
  }

  .systems-design__title-line--white,
  .systems-design__title-line--blue {
    font-size: 54px;
    font-weight: 700;
  }

  .systems-design__title-line--white {
    color: var(--soft-white-colour);
  }

  .systems-design__title-line--blue {
    color: var(--secound-main-colour);
  }

  .systems-design__description {
    max-width: 34vw;
    margin: 3.5vh 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
  }

  .systems-design__list {
    list-style: none;
    margin: 4.2vh 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2.2vh;
  }

  .systems-design__list-item {
    display: flex;
    align-items: center;
    gap: 1vw;
    color: var(--soft-white-colour);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
  }

  .systems-design__list-dot {
    width: clamp(14px, 1.55vw, 22px);
    height: clamp(14px, 1.55vw, 22px);
    border-radius: 50%;
    flex: 0 0 auto;
    position: relative;
    border: 0.12vw solid currentColor;
  }

  .systems-design__list-dot::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0.45vw;
    height: 0.45vw;
    border-radius: 50%;
    background: currentColor;
    transform: translate(-50%, -50%);
  }

  .systems-design__list-item--blue {
    color: var(--secound-main-colour)
  }

  .systems-design__list-item--gold {
    color: var(--gold-accent-colour);
  }

  .systems-design__list-item--blue span:last-child,
  .systems-design__list-item--gold span:last-child {
    color: var(--soft-white-colour);
  }

  .systems-design__right {
    display: flex;
    justify-content: flex-end;
  }

  .tech-panel {
    width: 100%;
    max-width: min(45vw, 656px);
    min-height: 68vh;
    padding: 3.2vh 2.4vw 2.4vh;
    border-radius: 1.4vw;
    background:
      linear-gradient(90deg, rgba(231, 191, 104, 0.10) 0%, rgba(255, 255, 255, 0.02) 18%, rgba(255, 255, 255, 0.03) 52%, rgba(231, 191, 104, 0.08) 100%),
      rgba(28, 26, 28, 0.95);
    border: 0.05vw solid rgba(255, 255, 255, 0.06);
    box-shadow:
      inset 0 0 0 0.03vw rgba(255, 255, 255, 0.02),
      0 1.4vw 3.4vw rgba(0, 0, 0, 0.18);
  }

  .tech-panel__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 3vh;
  }

  .tech-panel__meta-left {
    display: flex;
    flex-direction: column;
    gap: 1.1vh;
  }

  .tech-panel__label {
    color: rgba(230, 193, 109, 0.72);
    font-size: clamp(8px, 0.68vw, 10px);
    font-weight: 700;
    letter-spacing: 0.12em;
  }

  .tech-panel__accent-line {
    width: 5vw;
    height: 0.16vh;
    background: rgba(230, 193, 109, 0.68);
  }

  .tech-panel__meta-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.6vh;
    color: rgba(255, 255, 255, 0.24);
    font-size: clamp(6px, 0.48vw, 7px);
    font-weight: 500;
    letter-spacing: 0.10em;
  }

  .tech-panel__frame {
    position: relative;
    min-height: 56vh;
    border-radius: 1vw;
    border: 0.05vw solid rgba(255, 255, 255, 0.10);
    overflow: hidden;
  }

  .tech-panel__rings {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .tech-panel__ring {
    position: absolute;
    border-radius: 50%;
  }

  .tech-panel__ring--outer {
    width: clamp(120px, 18vw, 260px);
    height: clamp(120px, 18vw, 260px);
    border: 0.05vw solid rgba(230, 193, 109, 0.10);
    animation: ring-orbit 28s linear infinite;
  }

  .tech-panel__ring--outer::after {
    content: '';
    position: absolute;
    top: -0.18vw;
    left: 50%;
    transform: translateX(-50%);
    width: 0.38vw;
    height: 0.38vw;
    border-radius: 50%;
    background: rgba(230, 193, 109, 0.52);
  }

  .tech-panel__ring--inner {
    width: clamp(84px, 12.6vw, 182px);
    height: clamp(84px, 12.6vw, 182px);
    border: 0.05vw solid rgba(114, 219, 241, 0.16);
    animation: ring-orbit-rev 18s linear infinite;
  }

  .tech-panel__ring--inner::after {
    content: '';
    position: absolute;
    bottom: -0.14vw;
    left: 50%;
    transform: translateX(-50%);
    width: 0.28vw;
    height: 0.28vw;
    border-radius: 50%;
    background: rgba(114, 219, 241, 0.52);
  }

  .tech-panel__core {
    width: clamp(44px, 5.6vw, 82px);
    height: clamp(44px, 5.6vw, 82px);
    border-radius: 1vw;
    background: #050505;
    border: 0.1vw solid rgba(230, 193, 109, 0.55);
    box-shadow:
      0 0 0 0.08vw rgba(230, 193, 109, 0.10),
      0 0 1.8vw rgba(230, 193, 109, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent-colour);
    font-size: clamp(7px, 0.62vw, 9px);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: center;
    padding: 0 0.4vw;
  }

  .tech-panel__footer-left,
  .tech-panel__footer-right {
    position: absolute;
    bottom: 1vh;
    display: flex;
    flex-direction: column;
    gap: 0.4vh;
  }

  .tech-panel__footer-left {
    left: 0.2vw;
    color: rgba(255, 255, 255, 0.18);
    font-size: clamp(5px, 0.42vw, 6px);
    letter-spacing: 0.06em;
  }

  .tech-panel__footer-right {
    right: 0.2vw;
    align-items: flex-end;
  }

  .tech-panel__footer-title {
    color: rgba(255, 255, 255, 0.40);
    font-size: clamp(9px, 0.82vw, 12px);
    font-weight: 700;
    letter-spacing: 0.28em;
  }

  .tech-panel__footer-sub {
    color: rgba(230, 193, 109, 0.45);
    font-size: clamp(5px, 0.44vw, 7px);
    font-weight: 600;
    letter-spacing: 0.14em;
  }

  /* =========================
   TABLET
========================= */

  @media (max-width: 980px) {
    .systems-design {
      padding: 9vh var(--container-pad) 8vh;
    }

    .systems-design__inner {
      grid-template-columns: 1fr;
      row-gap: 5vh;
    }

    .systems-design__left {
      max-width: 100%;
    }

    .systems-design__title-line--white,
    .systems-design__title-line--blue {
      font-size: 7vw;
    }

    .systems-design__description {
      max-width: 78vw;
      font-size: 2.5vw;
    }

    .systems-design__list-item {
      gap: 1.8vw;
      font-size: 2.2vw;
    }

    .systems-design__list-dot {
      width: 3vw;
      height: 3vw;
      border-width: 0.18vw;
    }

    .systems-design__list-dot::after {
      width: 0.8vw;
      height: 0.8vw;
    }

    .systems-design__right {
      justify-content: flex-start;
    }

    .tech-panel {
      max-width: 100%;
      min-height: 54vh;
      padding: 2.8vh 3vw 2.2vh;
      border-radius: 1.8vw;
    }

    .tech-panel__label {
      font-size: 1.2vw;
    }

    .tech-panel__accent-line {
      width: 9vw;
    }

    .tech-panel__meta-right {
      font-size: 0.84vw;
    }

    .tech-panel__frame {
      min-height: 42vh;
      border-radius: 1.4vw;
    }

    .tech-panel__ring--outer {
      width: 26vw;
      height: 26vw;
    }

    .tech-panel__ring--inner {
      width: 18vw;
      height: 18vw;
    }

    .tech-panel__core {
      width: 10vw;
      height: 10vw;
      border-radius: 1.6vw;
      font-size: 1vw;
      padding: 0 0.7vw;
    }

    .tech-panel__footer-left {
      font-size: 0.7vw;
    }

    .tech-panel__footer-title {
      font-size: 1.3vw;
    }

    .tech-panel__footer-sub {
      font-size: 0.7vw;
    }
  }

  /* =========================
   MOBILE
========================= */

  @media (max-width: 640px) {
    .systems-design {
      padding: 7vh var(--container-pad) 7vh;
    }

    .systems-design__inner {
      row-gap: 4vh;
    }

    .systems-design__title {
      letter-spacing: -0.14vw;
    }

    .systems-design__title-line--white,
    .systems-design__title-line--blue {
      font-size: 11.3vw;
    }

    .systems-design__description {
      max-width: 88vw;
      margin-top: 2.4vh;
      font-size: 4.8vw;
      line-height: 1.42;
    }

    .systems-design__list {
      margin-top: 3.2vh;
      gap: 1.8vh;
    }

    .systems-design__list-item {
      align-items: flex-start;
      gap: 3vw;
      font-size: 4.4vw;
      line-height: 1.4;
    }

    .systems-design__list-dot {
      width: 5.8vw;
      height: 5.8vw;
      border-width: 0.28vw;
      margin-top: 0.2vh;
    }

    .systems-design__list-dot::after {
      width: 1.6vw;
      height: 1.6vw;
    }

    .tech-panel {
      max-width: 100%;
      min-height: auto;
      padding: 2.4vh 4vw 2vh;
      border-radius: 4vw;
    }

    .tech-panel__top {
      margin-bottom: 2.2vh;
    }

    .tech-panel__label {
      font-size: 2.4vw;
    }

    .tech-panel__accent-line {
      width: 18vw;
    }

    .tech-panel__meta-right {
      font-size: 1.5vw;
      gap: 0.4vh;
    }

    .tech-panel__frame {
      min-height: 34vh;
      border-radius: 3vw;
    }

    .tech-panel__ring--outer {
      width: 46vw;
      height: 46vw;
    }

    .tech-panel__ring--inner {
      width: 31vw;
      height: 31vw;
    }

    .tech-panel__core {
      width: 18vw;
      height: 18vw;
      border-radius: 3vw;
      font-size: 1.8vw;
      padding: 0 1vw;
    }

    .tech-panel__footer-left {
      left: 1vw;
      bottom: 1vh;
      font-size: 1.25vw;
    }

    .tech-panel__footer-title {
      font-size: 2.2vw;
    }

    .tech-panel__footer-sub {
      font-size: 1.2vw;
    }
  }

  /* =========================
   PROJECTS SHOWCASE
========================= */

  .projects-showcase {
    position: relative;
    width: 100%;
    padding: 11vh 0 10vh var(--container-pad);
    background:
      radial-gradient(circle at 0% 100%, rgba(166, 102, 35, 0.08) 0%, rgba(166, 102, 35, 0) 30%),
      linear-gradient(180deg, #040404 0%, #050505 100%);
    overflow: hidden;
  }

  .projects-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.08;
    background:
      radial-gradient(circle at 8% 15%, rgba(255, 255, 255, 0.34) 0.04vw, transparent 0.08vw),
      radial-gradient(circle at 18% 27%, rgba(255, 255, 255, 0.18) 0.04vw, transparent 0.08vw),
      radial-gradient(circle at 33% 12%, rgba(255, 255, 255, 0.14) 0.04vw, transparent 0.08vw),
      radial-gradient(circle at 51% 20%, rgba(255, 255, 255, 0.12) 0.04vw, transparent 0.08vw),
      radial-gradient(circle at 71% 14%, rgba(255, 255, 255, 0.14) 0.04vw, transparent 0.08vw),
      radial-gradient(circle at 89% 18%, rgba(255, 255, 255, 0.18) 0.04vw, transparent 0.08vw);
  }

  .projects-showcase::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 14%;
    background: linear-gradient(to bottom, transparent 0%, #040404 100%);
    z-index: 2;
    pointer-events: none;
  }

  .projects-showcase__inner {
    position: relative;
    z-index: 1;
    width: 100%;
  }

  .projects-showcase__top {
    width: calc(100% - var(--container-pad));
    padding-right: var(--container-pad);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 6.8vh;
  }

  .projects-showcase__title {
    margin: 0;
    line-height: 0.95;
    letter-spacing: -0.08vw;
    display: flex;
    align-items: baseline;
    gap: 0.6vw;
    flex-wrap: wrap;
  }

  .projects-showcase__title-line--white,
  .projects-showcase__title-line--gold {
    font-size: clamp(28px, 4.15vw, 60px);
    font-weight: 800;
  }

  .projects-showcase__title-line--white {
    color: var(--soft-white-colour);
  }

  .projects-showcase__title-line--gold {
    color: var(--gold-accent-colour);
  }

  .projects-showcase__nav {
    display: flex;
    align-items: center;
    gap: 1vw;
    padding-top: 0.3vh;
  }

  .projects-showcase__arrow {
    width: clamp(28px, 3.4vw, 49px);
    height: clamp(28px, 3.4vw, 49px);
    border-radius: 1vw;
    border: 0.05vw solid rgba(255, 255, 255, 0.22);
    background: transparent;
    color: var(--soft-white-colour);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(14px, 1.6vw, 23px);
    line-height: 1;
    cursor: pointer;
    transition:
      opacity 0.2s ease,
      border-color 0.2s ease,
      transform 0.2s ease,
      background 0.2s ease;
  }

  .projects-showcase__arrow:hover {
    transform: translateY(-0.15vh);
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.03);
  }

  .projects-showcase__arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
  }

  .projects-showcase__carousel {
    position: relative;
    overflow: hidden;
  }

  .projects-showcase__viewport {
    overflow: hidden;
    padding-right: var(--container-pad);
    touch-action: pan-y;
  }

  .projects-showcase__track {
    display: flex;
    gap: 2.4vw;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .projects-showcase__track.is-dragging {
    transition: none;
    cursor: grabbing;
  }

  .project-card {
    width: 35vw;
    flex: 0 0 35vw;
    user-select: none;
  }

  .project-card__media {
    width: 100%;
    height: 32vh;
    border-radius: 1.2vw;
    overflow: hidden;
    background:
      linear-gradient(90deg, rgba(231, 191, 104, 0.08) 0%, rgba(255, 255, 255, 0.02) 18%, rgba(255, 255, 255, 0.03) 52%, rgba(231, 191, 104, 0.07) 100%),
      rgba(24, 22, 24, 0.96);
    border: 0.05vw solid rgba(255, 255, 255, 0.06);
    box-shadow:
      inset 0 0 0 0.03vw rgba(255, 255, 255, 0.02),
      0 1vw 2.8vw rgba(0, 0, 0, 0.16);
    position: relative;
  }

  .project-card__placeholder {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
  }

  .project-card__placeholder::before {
    content: "";
    position: absolute;
    left: 6%;
    top: 0;
    bottom: 0;
    width: 0.08vw;
    background: rgba(255, 255, 255, 0.04);
  }

  .project-card__placeholder::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 66%;
    height: 0.08vw;
    background: rgba(255, 255, 255, 0.05);
  }

  .project-card__ui {
    position: absolute;
    border-radius: 0.6vw;
    border: 0.05vw solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.03);
  }

  .project-card__ui--left {
    left: 8%;
    top: 8%;
    width: 52%;
    height: 40%;
  }

  .project-card__ui--right {
    right: 7%;
    top: 8%;
    width: 24%;
    height: 40%;
    border-radius: 50%;
  }

  .project-card__ui--bottom {
    left: 8%;
    bottom: 8%;
    width: 84%;
    height: 13%;
  }

  .project-card__content {
    padding-top: 2.4vh;
  }

  .project-card__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1vw;
  }

  .project-card__title {
    margin: 0;
    color: var(--soft-white-colour);
    font-size: clamp(15px, 2vw, 29px);
    font-weight: 700;
    line-height: 1.08;
  }

  .project-card__link {
    font-size: clamp(14px, 1.9vw, 27px);
    line-height: 1;
    flex: 0 0 auto;
  }

  .project-card__link--blue {
    color: var(--blue-accent-colour);
  }

  .project-card__link--gold {
    color: var(--gold-accent-colour);
  }

  .project-card__meta {
    margin: 0.8vh 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: clamp(13px, 1.42vw, 20px);
    line-height: 1.4;
  }

  /* =========================
   TABLET
========================= */

  @media (max-width: 980px) {
    .projects-showcase {
      padding: 9vh 0 8vh var(--container-pad);
    }

    .projects-showcase__top {
      width: calc(100% - var(--container-pad));
      padding-right: var(--container-pad);
      margin-bottom: 5vh;
    }

    .projects-showcase__title-line--white,
    .projects-showcase__title-line--gold {
      font-size: 6.8vw;
    }

    .projects-showcase__nav {
      gap: 1.6vw;
    }

    .projects-showcase__arrow {
      width: 5.8vw;
      height: 5.8vw;
      border-radius: 1.6vw;
      font-size: 2.8vw;
    }

    .projects-showcase__viewport {
      padding-right: var(--container-pad);
    }

    .projects-showcase__track {
      gap: 3vw;
    }

    .project-card {
      width: 56vw;
      flex: 0 0 56vw;
    }

    .project-card__media {
      height: 25vh;
      border-radius: 1.8vw;
    }

    .project-card__ui {
      border-radius: 1vw;
    }

    .project-card__title {
      font-size: 3vw;
    }

    .project-card__link {
      font-size: 3vw;
    }

    .project-card__meta {
      font-size: 2.1vw;
    }
  }

  /* =========================
   MOBILE
========================= */

  @media (max-width: 640px) {
    .projects-showcase {
      padding: 7vh 0 7vh var(--container-pad);
    }

    .projects-showcase__top {
      width: calc(100% - var(--container-pad));
      padding-right: var(--container-pad);
      margin-bottom: 4vh;
      gap: 4vw;
    }

    .projects-showcase__title {
      gap: 1vw;
    }

    .projects-showcase__title-line--white,
    .projects-showcase__title-line--gold {
      font-size: 10.8vw;
    }

    .projects-showcase__nav {
      gap: 2vw;
      padding-top: 0;
    }

    .projects-showcase__arrow {
      width: 12vw;
      height: 12vw;
      border-radius: 3.4vw;
      font-size: 5.4vw;
    }

    .projects-showcase__viewport {
      padding-right: var(--container-pad);
    }

    .projects-showcase__track {
      gap: 4vw;
    }

    .project-card {
      width: 78vw;
      flex: 0 0 78vw;
    }

    .project-card__media {
      height: 21vh;
      border-radius: 3.4vw;
    }

    .project-card__ui {
      border-radius: 1.8vw;
    }

    .project-card__row {
      gap: 3vw;
    }

    .project-card__title {
      font-size: 5.8vw;
    }

    .project-card__link {
      font-size: 5.8vw;
    }

    .project-card__meta {
      margin-top: 0.7vh;
      font-size: 4.2vw;
    }
  }

  /* =========================
   CONTACT CTA
========================= */

  .contact-cta {
    position: relative;
    width: 100%;
    padding: 11vh var(--container-pad) 10vh;
    background:
      radial-gradient(circle at 0% 100%, rgba(166, 102, 35, 0.08) 0%, rgba(166, 102, 35, 0) 28%),
      linear-gradient(180deg, #040404 0%, #050505 100%);
    overflow: hidden;
  }

  .contact-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.08;
    background:
      radial-gradient(circle at 8% 15%, rgba(255, 255, 255, 0.32) 0.04vw, transparent 0.08vw),
      radial-gradient(circle at 19% 29%, rgba(255, 255, 255, 0.18) 0.04vw, transparent 0.08vw),
      radial-gradient(circle at 32% 13%, rgba(255, 255, 255, 0.14) 0.04vw, transparent 0.08vw),
      radial-gradient(circle at 48% 21%, rgba(255, 255, 255, 0.12) 0.04vw, transparent 0.08vw),
      radial-gradient(circle at 67% 14%, rgba(255, 255, 255, 0.14) 0.04vw, transparent 0.08vw),
      radial-gradient(circle at 84% 19%, rgba(255, 255, 255, 0.18) 0.04vw, transparent 0.08vw);
  }

  .contact-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 14%;
    background: linear-gradient(to bottom, transparent 0%, #0b0708 100%);
    z-index: 2;
    pointer-events: none;
  }

  .contact-cta__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.72fr);
    column-gap: 8vw;
    align-items: start;
  }

  .contact-cta__left {
    max-width: 48vw;
  }

  .contact-cta__intro {
    margin-bottom: 8vh;
  }

  .contact-cta__title {
    margin: 0;
    line-height: 0.95;
    letter-spacing: -0.08vw;
  }

  .contact-cta__title-line {
    display: block;
  }

  .contact-cta__title-line--white,
  .contact-cta__title-line--blue {
    font-size: 60px;
    font-weight: 700;
  }

  .contact-cta__title-line--white {
    color: var(--soft-white-colour);
  }

  .contact-cta__title-line--blue {
    color: var(--secound-main-colour);
  }

  .contact-cta__description {
    max-width: 38vw;
    margin: 3.6vh 0 0;
    color: var(--description-main-colour);
    font-size: 20px;
    line-height: 1.55;
    font-weight: 400;
  }

  .contact-cta__form {
    width: 100%;
  }

  .contact-cta__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4vw;
    margin-bottom: 7vh;
  }

  .contact-field {
    display: flex;
    flex-direction: column;
  }

  .contact-field--full {
    width: 100%;
    margin-bottom: 6.5vh;
  }

  .contact-field__label {
    margin-bottom: 2.4vh;
    color: var(--gold-accent-colour);
    font-size: clamp(10px, 0.92vw, 13px);
    font-weight: 700;
    letter-spacing: 0.34em;
  }

  .contact-field__input {
    width: 100%;
    padding: 0 0 1.5vh;
    border: 0;
    border-bottom: 0.05vw solid rgba(255, 255, 255, 0.22);
    background: transparent;
    color: var(--soft-white-colour);
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(14px, 1.5vw, 22px);
    line-height: 1.4;
    outline: none;
    transition: border-color 0.2s ease, opacity 0.2s ease;
  }

  .contact-field__input::placeholder {
    color: rgba(255, 255, 255, 0.36);
  }

  .contact-field__input:focus {
    border-color: rgba(114, 219, 241, 0.75);
  }

  .contact-field__textarea {
    min-height: 7vh;
    resize: vertical;
    overflow: hidden;
  }

  .contact-cta__bottom {
    display: flex;
    align-items: center;
    gap: 1.4vw;
  }

  .contact-cta__button {
    width: clamp(140px, 16.4vw, 236px);
    height: 6.4vh;
    border: 0;
    border-radius: 0.8vw;
    background: #d8d8d8;
    color: #0a0a0a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.6vw;
    font-size: clamp(13px, 1.22vw, 18px);
    font-weight: 800;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition:
      transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.25s ease;
  }

  .contact-cta__button:hover {
    transform: translateY(-0.2vh);
    box-shadow: 0 0.6vh 2vh rgba(216, 216, 216, 0.2);
  }

  .contact-cta__button-arrow {
    font-size: clamp(13px, 1.26vw, 18px);
    line-height: 1;
  }

  .contact-cta__consent {
    max-width: 26vw;
    margin: 0;
    color: rgba(255, 255, 255, 0.54);
    font-size: clamp(11px, 0.98vw, 14px);
    line-height: 1.5;
  }

  .contact-cta__right {
    padding-top: 27.5vh;
    display: flex;
    flex-direction: column;
    gap: 10vh;
  }

  .contact-info-block {
    width: 100%;
  }

  .contact-info-block__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.9vw;
    margin-bottom: 3.4vh;
    font-size: clamp(10px, 0.92vw, 13px);
    font-weight: 700;
    letter-spacing: 0.34em;
  }

  .contact-info-block__line {
    width: 2.4vw;
    height: 0.12vh;
    background: currentColor;
    opacity: 0.9;
  }

  .contact-info-block--gold .contact-info-block__eyebrow {
    color: var(--gold-accent-colour);
  }

  .contact-info-block--blue .contact-info-block__eyebrow {
    color: var(--blue-accent-colour);
  }

  .contact-info-block__email {
    display: inline-block;
    margin: 0 0 1.6vh;
    color: var(--soft-white-colour);
    text-decoration: none;
    font-size: clamp(24px, 3.1vw, 45px);
    font-weight: 400;
    line-height: 1.05;
  }

  .contact-info-block__phones {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: clamp(14px, 1.46vw, 21px);
    line-height: 1.4;
  }

  .contact-info-block__phones a {
    color: inherit;
    text-decoration: none;
  }

  .contact-info-block__phones span {
    margin: 0 0.45vw;
    color: rgba(255, 255, 255, 0.38);
  }

  .contact-info-block__city {
    margin: 0 0 1.6vh;
    color: var(--soft-white-colour);
    font-size: clamp(18px, 2.45vw, 35px);
    font-weight: 400;
    line-height: 1.08;
  }

  .contact-info-block__meta {
    margin: 0;
    color: var(--gold-accent-colour);
    font-size: clamp(12px, 1.08vw, 16px);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.18em;
  }

  /* =========================
   TABLET
========================= */

  @media (max-width: 980px) {
    .contact-cta {
      padding: 9vh var(--container-pad) 8vh;
    }

    .contact-cta__inner {
      grid-template-columns: 1fr;
      row-gap: 6vh;
    }

    .contact-cta__left {
      max-width: 100%;
    }

    .contact-cta__intro {
      margin-bottom: 5vh;
    }

    .contact-cta__title-line--white,
    .contact-cta__title-line--blue {
      font-size: 7vw;
    }

    .contact-cta__description {
      max-width: 76vw;
      font-size: 2.5vw;
    }

    .contact-cta__row {
      gap: 2.4vw;
      margin-bottom: 5vh;
    }

    .contact-field--full {
      margin-bottom: 4.5vh;
    }

    .contact-field__label {
      font-size: 1.5vw;
      margin-bottom: 1.8vh;
    }

    .contact-field__input {
      font-size: 2.4vw;
    }

    .contact-cta__bottom {
      gap: 2.6vw;
      align-items: flex-start;
    }

    .contact-cta__button {
      width: 24vw;
      height: 5.8vh;
      border-radius: 1.4vw;
      gap: 2vw;
      font-size: 1.9vw;
    }

    .contact-cta__button-arrow {
      font-size: 2vw;
    }

    .contact-cta__consent {
      max-width: 42vw;
      font-size: 1.45vw;
    }

    .contact-cta__right {
      padding-top: 0;
      gap: 6vh;
    }

    .contact-info-block__eyebrow {
      font-size: 1.4vw;
      gap: 1.5vw;
      margin-bottom: 2.2vh;
    }

    .contact-info-block__line {
      width: 4vw;
    }

    .contact-info-block__email {
      font-size: 5vw;
    }

    .contact-info-block__phones {
      font-size: 2.2vw;
    }

    .contact-info-block__city {
      font-size: 4vw;
      margin-bottom: 1vh;
    }

    .contact-info-block__meta {
      font-size: 1.5vw;
    }
  }

  /* =========================
   MOBILE
========================= */

  @media (max-width: 640px) {
    .contact-cta {
      padding: 7vh var(--container-pad) 7vh;
    }

    .contact-cta__inner {
      row-gap: 5vh;
    }

    .contact-cta__title {
      letter-spacing: -0.14vw;
    }

    .contact-cta__title-line--white,
    .contact-cta__title-line--blue {
      font-size: 11.3vw;
    }

    .contact-cta__description {
      max-width: 88vw;
      margin-top: 2.4vh;
      font-size: 4.8vw;
      line-height: 1.45;
    }

    .contact-cta__row {
      grid-template-columns: 1fr;
      gap: 4vh;
      margin-bottom: 4vh;
    }

    .contact-field--full {
      margin-bottom: 4vh;
    }

    .contact-field__label {
      font-size: 3vw;
      margin-bottom: 1.6vh;
      letter-spacing: 0.28em;
    }

    .contact-field__input {
      padding-bottom: 1.3vh;
      font-size: 4.8vw;
      border-bottom-width: 0.28vw;
    }

    .contact-cta__bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 2vh;
    }

    .contact-cta__button {
      width: 42vw;
      height: 6vh;
      border-radius: 2.8vw;
      gap: 3vw;
      font-size: 3.8vw;
    }

    .contact-cta__button-arrow {
      font-size: 4vw;
    }

    .contact-cta__consent {
      max-width: 88vw;
      font-size: 3.3vw;
      line-height: 1.45;
    }

    .contact-cta__right {
      gap: 4.6vh;
    }

    .contact-info-block__eyebrow {
      gap: 2.4vw;
      margin-bottom: 1.8vh;
      font-size: 2.9vw;
    }

    .contact-info-block__line {
      width: 8vw;
    }

    .contact-info-block__email {
      font-size: 9.2vw;
      line-height: 1.02;
    }

    .contact-info-block__phones {
      font-size: 4vw;
      line-height: 1.5;
    }

    .contact-info-block__phones span {
      margin: 0 1vw;
    }

    .contact-info-block__city {
      font-size: 7vw;
      margin-bottom: 1vh;
    }

    .contact-info-block__meta {
      font-size: 3vw;
      line-height: 1.45;
      letter-spacing: 0.14em;
    }
  }

  /* =========================
   TABLET
========================= */

  @media (max-width: 980px) {
    .logo-splash img {
      height: 7.2vh;
    }

    .site-header {
      height: 10vh;
      padding: 0 4vw;
    }

    .logo img {
      height: 3vh;
    }

    .nav-actions {
      gap: 3vw;
    }

    .contact-btn {
      width: 24vw;
      height: 4.6vh;
      font-size: 1.3vh;
    }

    .menu-toggle {
      width: 5vw;
      height: 5vw;
    }

    .menu-toggle span {
      width: 3.8vw;
    }

    .hero-web__content {
      top: 16vh;
      left: 4vw;
      width: 78vw;
    }

    .hero-web__title {
      width: 74vw;
    }

    .hero-web__title-line--white,
    .hero-web__title-line--blue {
      font-size: 8.8vw;
    }

    .hero-web__description {
      width: 72vw;
      font-size: 2.5vw;
      margin-top: 2.4vh;
    }

    .hero-web__bottom {
      margin-top: 5.5vh;
      gap: 2vw;
    }

    .hero-web__button {
      width: 25vw;
      height: 6vh;
    }

    .hero-web__meta {
      width: 38vw;
    }
  }

  /* =========================
   MOBILE
========================= */

  @media (max-width: 640px) {
    .logo-splash img {
      height: 6vh;
    }

    .site-header {
      height: 10vh;
      padding: 0 5vw;
    }

    .logo img {
      height: 2.8vh;
    }

    .nav-actions {
      gap: 4vw;
    }

    .contact-btn {
      width: 34vw;
      height: 4.6vh;
      font-size: 1.2vh;
      letter-spacing: 0.06em;
    }

    .menu-toggle {
      width: 8vw;
      height: 8vw;
    }

    .menu-toggle span {
      width: 6vw;
      height: 0.2vh;
    }

    .hero-web__video {
      object-position: 63% center;
    }

    .hero-web__content {
      top: 15vh;
      left: 5vw;
      width: 90vw;
    }

    .hero-web__badge {
      gap: 1.8vw;
      height: 3.1vh;
      padding: 0 3vw;
      font-size: 1.05vh;
      margin-bottom: 2.1vh;
    }

    .hero-web__badge-dot {
      width: 1.4vw;
      height: 1.4vw;
    }

    .hero-web__title {
      width: 88vw;
      letter-spacing: -0.18vw;
    }

    .hero-web__title-line--white,
    .hero-web__title-line--blue {
      font-size: 12.8vw;
    }

    .hero-web__description {
      width: 86vw;
      margin-top: 2.2vh;
      font-size: 4.6vw;
      line-height: 1.4;
    }

    .hero-web__bottom {
      margin-top: 4.4vh;
      flex-direction: column;
      align-items: flex-start;
      gap: 2vh;
    }

    .hero-web__button {
      width: 48vw;
      height: 6.2vh;
      border-radius: 2vw;
      font-size: 1.35vh;
    }

    .hero-web__meta {
      width: 82vw;
      padding-top: 0;
    }

    .hero-web__meta-title {
      font-size: 1.1vh;
    }

    .hero-web__meta-text {
      font-size: 1.2vh;
    }

  }

  /* =========================
   FOOTER
========================= */

  .site-footer {
    width: 100%;
    background: #0b0708;
    border-top: 0.05vw solid rgba(255, 255, 255, 0.04);
    padding: 5.2vh 4vw 5.6vh;
  }

  .site-footer__inner {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4vw;
  }

  .site-footer__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 2.4vh;
  }

  .site-footer__brand img {
    display: block;
    width: auto;
    height: 3.2vh;
  }

  .site-footer__copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: clamp(13px, 1.18vw, 17px);
    line-height: 1.45;
    font-weight: 400;
  }

  .site-footer__nav {
    display: flex;
    align-items: center;
    gap: clamp(24px, 4.8vw, 56px);
    padding-top: 1vh;
  }

  .site-footer__nav a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: clamp(11px, 0.98vw, 14px);
    font-weight: 500;
    letter-spacing: 0.16em;
    transition: opacity 0.2s ease, color 0.2s ease;
  }

  .site-footer__nav a:hover {
    color: var(--first-main-colour);
    opacity: 1;
  }

  /* =========================
   TABLET
========================= */

  @media (max-width: 980px) {
    .site-footer {
      padding: 4.5vh 4vw 5vh;
    }

    .site-footer__inner {
      gap: 4vh;
      flex-direction: column;
      align-items: flex-start;
    }

    .site-footer__brand {
      margin-bottom: 2vh;
    }

    .site-footer__brand img {
      height: 3vh;
    }

    .site-footer__copy p {
      font-size: 2vw;
    }

    .site-footer__nav {
      gap: 4vw;
      padding-top: 0;
      flex-wrap: wrap;
    }

    .site-footer__nav a {
      font-size: 1.7vw;
    }
  }

  /* =========================
   MOBILE
========================= */

  @media (max-width: 640px) {
    .site-footer {
      padding: 4.5vh 5vw 5vh;
    }

    .site-footer__brand {
      margin-bottom: 1.8vh;
    }

    .site-footer__brand img {
      height: 2.8vh;
    }

    .site-footer__copy p {
      font-size: 3.9vw;
      line-height: 1.5;
    }

    .site-footer__nav {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.8vh;
    }

    .site-footer__nav a {
      font-size: 3.2vw;
      letter-spacing: 0.12em;
    }
  }

  /* =========================
   CONTACT EMAIL HOVER
========================= */

  .contact-info-block__email {
    transition: opacity 0.2s ease;
  }

  .contact-info-block__email:hover {
    opacity: 0.82;
  }

  .contact-info-block__phones a {
    transition: color 0.2s ease;
  }

  .contact-info-block__phones a:hover {
    color: var(--soft-white-colour);
  }

  /* =========================
   PROJECT CARD HOVER
========================= */

  .project-card__media {
    transition: box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .project-card:hover .project-card__media {
    transform: translateY(-2px);
    box-shadow:
      inset 0 0 0 0.03vw rgba(255, 255, 255, 0.04),
      0 1.6vw 3.8vw rgba(0, 0, 0, 0.24);
  }

  .project-card__link {
    transition: transform 0.22s ease;
  }

  .project-card:hover .project-card__link {
    transform: translate(2px, -2px);
  }

  /* =========================
   SCROLL REVEAL
========================= */

  @media (prefers-reduced-motion: no-preference) {
    [data-reveal] {
      opacity: 0;
      transform: translateY(22px);
      transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    }

    [data-reveal].is-revealed {
      opacity: 1;
      transform: translateY(0);
    }

    [data-reveal-delay="1"] {
      transition-delay: 0.12s;
    }

    [data-reveal-delay="2"] {
      transition-delay: 0.24s;
    }

    [data-reveal-delay="3"] {
      transition-delay: 0.36s;
    }

    /* Specjalna animacja dla linii timeline */
    [data-reveal].process-minimal__line {
      transform: scaleX(0);
      transform-origin: left center;
      transition:
        opacity 0.4s ease 0.15s,
        transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
    }

    [data-reveal].process-minimal__line.is-revealed {
      opacity: 1;
      transform: scaleX(1);
    }
  }

  /* =========================
   REDUCED MOTION FALLBACK
========================= */

  @media (prefers-reduced-motion: reduce) {
    .hero-web__badge-dot {
      animation: none;
    }

    .tech-panel__ring--outer,
    .tech-panel__ring--inner {
      animation: none;
    }
  }

  /* =========================================
   GLOBAL CONTAINER / MAX 1440 / CENTERING
========================================= */

  .site-header {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-wrap,
  .why-web__inner,
  .process-minimal__inner,
  .brand-refresh__inner,
  .systems-design__inner,
  .contact-cta__inner,
  .site-footer__inner,
  .projects-showcase__top,
  .projects-showcase__viewport {
    width: min(calc(100% - (var(--container-pad) * 2)), var(--container-max));
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
  }

  /* sekcje zostają full width jako tło, ale treść siedzi w inner/container */
  .why-web,
  .process-minimal,
  .brand-refresh,
  .systems-design,
  .contact-cta,
  .site-footer,
  .projects-showcase {
    padding-left: 0;
    padding-right: 0;
  }

  /* =========================================
   HERO CONTENT CENTERED TO CONTAINER
========================================= */

  .hero-web__content {
    position: absolute;
    top: 18vh;
    left: 50%;
    width: min(calc(100% - (var(--container-pad) * 2)), var(--container-max));
    max-width: var(--container-max);
    transform: translateX(-50%);
  }

  .hero-web__content.is-hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(2vh);
    pointer-events: none;
  }

  .hero-web__content.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }

  /* hero tekst nie na vw tylko w sensownych limitach */
  .hero-web__title {
    width: min(100%, 808px);
  }

  .hero-web__description {
    width: min(100%, 720px);
  }

  /* =========================================
   SECTION INNERS
========================================= */

  .why-web__inner,
  .process-minimal__inner,
  .brand-refresh__inner,
  .systems-design__inner,
  .contact-cta__inner,
  .site-footer__inner {
    max-width: var(--container-max);
  }

  /* =========================================
   FIXES FOR TEXT COLUMNS THAT STILL USE VW
========================================= */

  .brand-refresh__left {
    max-width: 560px;
  }

  .brand-refresh__description {
    max-width: 620px;
  }

  .brand-card__text {
    max-width: 520px;
  }

  .systems-design__left {
    max-width: 620px;
  }

  .systems-design__description {
    max-width: 620px;
  }

  .contact-cta__left {
    max-width: 720px;
  }

  .contact-cta__description {
    max-width: 620px;
  }

  .contact-cta__consent {
    max-width: 420px;
  }

  .process-step__text {
    max-width: 360px;
  }

  /* =========================================
   PROJECTS SECTION
========================================= */

  .projects-showcase {
    padding-top: 11vh;
    padding-bottom: 10vh;
    padding-left: 0;
  }

  .projects-showcase__top {
    padding-right: 0;
    width: min(calc(100% - (var(--container-pad) * 2)), var(--container-max));
  }

  .projects-showcase__viewport {
    padding-right: 0;
    width: min(calc(100% - (var(--container-pad) * 2)), var(--container-max));
  }

  .projects-showcase__track {
    gap: clamp(16px, 2.4vw, 34px);
  }

  .project-card {
    width: min(35vw, 520px);
    flex: 0 0 min(35vw, 520px);
  }

  /* =========================================
   FOOTER
========================================= */

  .site-footer {
    padding-top: 5.2vh;
    padding-bottom: 5.6vh;
  }

  /* =========================================
   TABLET OVERRIDES
========================================= */

  @media (max-width: 980px) {
    .site-header {
      padding-left: 0;
      padding-right: 0;
    }

    .hero-web__content {
      top: 16vh;
      left: 50%;
      width: min(calc(100% - (var(--container-pad) * 2)), var(--container-max));
      transform: translateX(-50%);
    }

    .hero-web__content.is-hidden {
      transform: translateX(-50%) translateY(2vh);
    }

    .hero-web__content.is-visible {
      transform: translateX(-50%) translateY(0);
    }

    .hero-web__title {
      width: 100%;
      max-width: 74vw;
    }

    .hero-web__description {
      width: 100%;
      max-width: 72vw;
    }

    .brand-refresh__left,
    .systems-design__left,
    .contact-cta__left,
    .brand-refresh__description,
    .systems-design__description,
    .contact-cta__description,
    .contact-cta__consent,
    .process-step__text,
    .brand-card__text {
      max-width: 100%;
    }

    .projects-showcase {
      padding-top: 9vh;
      padding-bottom: 8vh;
    }

    .projects-showcase__top,
    .projects-showcase__viewport {
      width: min(calc(100% - (var(--container-pad) * 2)), var(--container-max));
    }

    .project-card {
      width: min(56vw, 560px);
      flex: 0 0 min(56vw, 560px);
    }

    .site-footer {
      padding-top: 4.5vh;
      padding-bottom: 5vh;
    }
  }

  /* =========================================
   MOBILE OVERRIDES
========================================= */

  @media (max-width: 640px) {
    .site-header {
      padding-left: 0;
      padding-right: 0;
    }

    .hero-web__content {
      top: 15vh;
      left: 50%;
      width: min(calc(100% - (var(--container-pad) * 2)), var(--container-max));
      transform: translateX(-50%);
    }

    .hero-web__content.is-hidden {
      transform: translateX(-50%) translateY(2vh);
    }

    .hero-web__content.is-visible {
      transform: translateX(-50%) translateY(0);
    }

    .hero-web__title,
    .hero-web__description,
    .hero-web__meta {
      width: 100%;
      max-width: 100%;
    }

    .projects-showcase {
      padding-top: 7vh;
      padding-bottom: 7vh;
    }

    .projects-showcase__top,
    .projects-showcase__viewport {
      width: min(calc(100% - (var(--container-pad) * 2)), var(--container-max));
    }

    .project-card {
      width: min(78vw, 420px);
      flex: 0 0 min(78vw, 420px);
    }

    .site-footer {
      padding-top: 4.5vh;
      padding-bottom: 5vh;
    }
  }

/* =========================
   CONTENT PAGE (subpages)
========================= */

.content-page {
  width: 100%;
  padding: 18vh var(--container-pad) 12vh;
  background: linear-gradient(180deg, #050505 0%, #040404 100%);
  min-height: 80vh;
}

.content-page__inner {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.content-page__eyebrow {
  display: inline-block;
  margin-bottom: 2.8vh;
  color: var(--secound-main-colour);
  font-size: clamp(10px, 0.9vw, 13px);
  font-weight: 700;
  letter-spacing: 0.28em;
}

.content-page__title {
  margin: 0 0 7vh;
  font-size: clamp(36px, 5.2vw, 76px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.07vw;
  color: var(--first-main-colour);
}

.content-page__title span {
  color: var(--gold-main-colur);
}

.content-page__section {
  margin-bottom: 5.6vh;
}

.content-page__section-title {
  margin: 0 0 2vh;
  font-size: clamp(16px, 1.9vw, 27px);
  font-weight: 700;
  color: var(--soft-white-colour);
  line-height: 1.1;
}

.content-page p,
.content-page li {
  margin: 0 0 1.6vh;
  color: var(--description-main-colour);
  font-size: clamp(14px, 1.52vw, 21px);
  line-height: 1.65;
  font-weight: 400;
}

.content-page ul {
  padding-left: 1.4em;
  margin: 0 0 2vh;
}

.content-page a {
  color: var(--secound-main-colour);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.content-page a:hover {
  opacity: 0.78;
}

.content-page__divider {
  width: 100%;
  height: 0.05vw;
  background: rgba(255, 255, 255, 0.07);
  margin: 5.6vh 0;
}

/* FAQ items */
.faq-item {
  padding: 3.4vh 0;
  border-top: 0.05vw solid rgba(255, 255, 255, 0.07);
}

.faq-item:last-child {
  border-bottom: 0.05vw solid rgba(255, 255, 255, 0.07);
}

.faq-item__q {
  margin: 0 0 1.4vh;
  font-size: clamp(16px, 1.75vw, 25px);
  font-weight: 700;
  color: var(--soft-white-colour);
  line-height: 1.15;
}

.faq-item__a {
  margin: 0;
  color: var(--description-main-colour);
  font-size: clamp(14px, 1.5vw, 21px);
  line-height: 1.65;
}

@media (max-width: 640px) {
  .content-page {
    padding: 16vh var(--container-pad) 10vh;
  }

  .faq-item {
    padding: 3vh 0;
  }
}
