/*
Theme Name: Prestigo Clean
Theme URI: https://prestigoclean.pl
Author: Prestigo Clean
Author URI: https://prestigoclean.pl
Description: Motyw WordPress dla Prestigo Clean.
Version: 1.0.0
Text Domain: prestigoclean
*/

:root {
  --brand-primary: #3ea8f4;
  --brand-green: #39b54a;
  --brand-dark: #000000;
  --hero-radius: 0 0 44px 44px;
  --nav-z-index: 9990;
  --font-hagrid: "Hagrid Trial", "Hagrid", "Segoe UI", Arial, sans-serif;
  --font-roboto: "Roboto", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

body:not(.wp-admin):not(.block-editor-iframe__body) {
  font-family: var(--font-hagrid);
  background: #000000;
  color: #ffffff;
}

.ui-arrow {
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
  vertical-align: -0.12em;
}

.site-nav-section {
  position: relative;
  z-index: var(--nav-z-index);
  background: #f2f2f2;
  padding: 6px 0 18px;
}

.hero-text,
.benefits-intro,
.benefit-text,
.about-copy,
.services-intro-text,
.logos-subtitle {
  font-family: var(--font-roboto);
}

.hero-section-wrap {
  width: 100%;
  background: #000;
}

.hero-section {
  position: relative;
  min-height: 94vh;
  width: calc(100% - 20px);
  max-width: none;
  margin: 0 10px;
  border-radius: var(--hero-radius);
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-slider__dots {
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 3vw, 28px);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  transform: translateX(-50%);
}

.hero-slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.hero-slider__dot.is-active {
  background: #ffffff;
  transform: scale(1.15);
}

.hero-slider__dot:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }
}

.home-page--blocks {
  padding: 0;
  max-width: none;
  overflow-x: clip;
}

.home-page--blocks > .wp-block-post-content,
.home-page--blocks .entry-content {
  padding: 0;
  max-width: none;
}

.home-page--blocks .alignfull {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.home-page--blocks .wp-block-acf-prestigo-home-hero,
.home-page--blocks .wp-block-acf-prestigo-home-hero.alignfull {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.home-page--blocks .hero-section-wrap {
  width: 100%;
  max-width: none;
}

.hero-overlay {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.island-navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--nav-z-index);
  width: min(1390px, calc(100% - 120px));
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.15);
  font-family: var(--font-roboto);
  overflow: visible;
}

.island-navbar .navbar-collapse,
.island-navbar .navbar-nav {
  overflow: visible;
}

.admin-bar .island-navbar {
  top: 48px;
}

.island-navbar .container-fluid {
  min-height: 74px;
}

.brand-logo {
  height: 46px;
  width: auto;
}

.nav-link {
  color: #101010;
  font-weight: 100;
  letter-spacing: 0.01em;
  padding-inline: 0.55rem !important;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--brand-primary);
}

.island-navbar .navbar-nav {
  list-style: none;
  padding-left: 0;
}

.island-navbar .navbar-nav > .menu-item {
  position: relative;
}

.island-navbar .navbar-nav > .menu-item.menu-item-has-children {
  position: static;
}

.island-navbar .navbar-nav > .menu-item > a {
  color: #101010;
  font-weight: 100;
  letter-spacing: 0.01em;
  padding: 0.5rem 0.55rem !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.island-navbar .navbar-nav > .menu-item > a:hover,
.island-navbar .navbar-nav > .menu-item > a:focus,
.island-navbar .navbar-nav > .current-menu-item > a,
.island-navbar .navbar-nav > .current-menu-ancestor > a {
  color: var(--brand-primary);
}

.island-navbar .navbar-nav .menu-item-has-children > a::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  margin-left: 0.36rem;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.25s ease;
}

.island-navbar .navbar-nav .menu-item-has-children:hover > a::after,
.island-navbar .navbar-nav .menu-item-has-children:focus-within > a::after,
.island-navbar .navbar-nav .menu-item-has-children.is-mega-open > a::after {
  transform: rotate(225deg) translateY(-1px);
}

.dropdown-menu {
  border: 0;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.island-navbar .navbar-nav .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.2),
    0 2px 0 rgba(255, 255, 255, 0.8) inset;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  width: min(860px, calc(100vw - 48px));
  position: absolute;
  left: 50%;
  top: calc(100% - 2px);
  z-index: calc(var(--nav-z-index) + 1);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.7rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px) scale(0.985);
  transform-origin: top center;
  transition:
    opacity 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.22s ease;
}

/* Most hover: pełna szerokość pod navem + zapas nad panelem */
.island-navbar .navbar-nav .sub-menu::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -28px;
  width: 100vw;
  max-width: none;
  height: 32px;
  transform: translateX(-50%);
}

.island-navbar .navbar-nav .menu-item-has-children:hover > .sub-menu,
.island-navbar .navbar-nav .menu-item-has-children:focus-within > .sub-menu,
.island-navbar .navbar-nav .menu-item-has-children.is-mega-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.island-navbar .navbar-nav .sub-menu.mega-menu {
  flex-direction: row;
  padding: 0.65rem;
}

.island-navbar .navbar-nav .mega-menu__list-col {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 0 0 min(340px, 42%);
  min-width: 0;
  display: flex;
}

.island-navbar .navbar-nav .mega-menu__list {
  list-style: none;
  margin: 0;
  padding: 0.25rem;
  width: 100%;
  max-height: min(68vh, 480px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(62, 168, 244, 0.45) transparent;
}

.island-navbar .navbar-nav .mega-menu__list::-webkit-scrollbar {
  width: 5px;
}

.island-navbar .navbar-nav .mega-menu__list::-webkit-scrollbar-thumb {
  background: rgba(62, 168, 244, 0.45);
  border-radius: 999px;
}

.island-navbar .navbar-nav .mega-menu__list > .menu-item > a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 0.88rem;
  line-height: 1.35;
  letter-spacing: 0.005em;
  text-shadow: none;
  border: 0;
  border-radius: 12px;
  background: transparent;
  min-height: 0;
  height: auto;
  padding: 0.72rem 0.85rem;
  position: relative;
  overflow: visible;
  isolation: auto;
  box-shadow: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.island-navbar .navbar-nav .mega-menu__list > .menu-item > a::after {
  display: none;
}

.island-navbar .navbar-nav .mega-menu__list > .menu-item > a::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: rgba(16, 16, 16, 0.18);
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.island-navbar .navbar-nav .mega-menu__list > .menu-item > a.is-active,
.island-navbar .navbar-nav .mega-menu__list > .menu-item > a:hover,
.island-navbar .navbar-nav .mega-menu__list > .menu-item > a:focus {
  background: rgba(62, 168, 244, 0.1);
  color: #0b84dc;
  transform: none;
  box-shadow: none;
}

.island-navbar .navbar-nav .mega-menu__list > .menu-item > a.is-active::before,
.island-navbar .navbar-nav .mega-menu__list > .menu-item > a:hover::before,
.island-navbar .navbar-nav .mega-menu__list > .menu-item > a:focus::before {
  display: block;
  background: var(--brand-primary);
  transform: scale(1.15);
  box-shadow: 0 0 0 3px rgba(62, 168, 244, 0.22);
}

.island-navbar .navbar-nav .mega-menu__preview {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 320px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #121212;
}

.island-navbar .navbar-nav .mega-menu__preview-media {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.02);
  transition:
    opacity 0.35s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.island-navbar .navbar-nav .mega-menu__preview-media.is-fading {
  opacity: 0;
  transform: scale(1.06);
}

.island-navbar .navbar-nav .mega-menu__preview-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin: 0;
  padding: 2.4rem 1.15rem 1.1rem;
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.3;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.72) 100%);
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.island-navbar .navbar-nav .mega-menu__preview-caption.is-fading {
  opacity: 0;
}

/* Fallback gdy JS jeszcze nie przebudował menu (krótki flash) */
.island-navbar .navbar-nav .sub-menu:not(.mega-menu) > .menu-item > a {
  display: block;
  text-decoration: none;
  color: #111111;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.35;
  border-radius: 10px;
  background: transparent;
  padding: 0.65rem 0.8rem;
}

.island-navbar .navbar-nav .sub-menu:not(.mega-menu) > .menu-item > a:hover,
.island-navbar .navbar-nav .sub-menu:not(.mega-menu) > .menu-item > a:focus {
  background: rgba(62, 168, 244, 0.1);
  color: #0b84dc;
}

.dropdown-item {
  font-weight: 100;
}

.dropdown-item:hover {
  background: rgba(62, 168, 244, 0.12);
  color: #000000;
}

.contact-mail {
  color: #0b84dc;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.contact-phone {
  text-decoration: none;
  background: var(--brand-primary);
  color: #ffffff;
  border-radius: 999px;
  padding: 0.68rem 1.14rem;
  font-size: 0.74rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.25s ease,
    transform 0.2s ease;
}

.contact-phone:hover,
.contact-phone:focus {
  background: #2799ea;
  color: #ffffff;
  transform: translateY(-1px);
}

.island-navbar .navbar-toggler {
  border: 1px solid rgba(62, 168, 244, 0.45) !important;
  border-radius: 12px;
  padding: 0.36rem 0.5rem;
  background: #ffffff;
}

.island-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 0.18rem rgba(62, 168, 244, 0.2) !important;
}

.island-navbar .navbar-toggler-icon {
  width: 1.1em;
  height: 1.1em;
}

.hero-content-wrap {
  position: relative;
  z-index: 3;
  min-height: calc(94vh - 92px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-bottom: clamp(34px, 5.6vw, 76px);
}

.hero-content {
  width: min(610px, 100%);
  margin-right: clamp(4px, 2.6vw, 28px);
  padding: clamp(28px, 3.6vw, 40px);
  border-radius: 32px;
  background: rgba(17, 20, 25, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(3px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}

.hero-title {
  margin: 0 0 12px;
  font-size: clamp(2.35rem, 4vw, 4.15rem);
  font-weight: 500;
  line-height: 1.04;
}

.hero-title span {
  color: var(--brand-primary);
}

.hero-text {
  margin: 0 0 26px;
  max-width: 50ch;
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.88rem;
  line-height: 1.38;
}

.btn-hero {
  border-radius: 999px;
  padding: 0.82rem 1.62rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-width: 1.4px;
}

.btn-outline-light {
  color: #f3f3f3;
  border-color: rgba(255, 255, 255, 0.66);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  color: #0d0d0d;
  background: #ffffff;
  border-color: #ffffff;
}

.btn-primary-custom {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
}

.btn-primary-custom:hover,
.btn-primary-custom:focus {
  background: #1f94e8;
  border-color: #1f94e8;
}

.services-marquee {
  background: #000000;
  color: #ffffff;
  overflow: hidden;
  padding: 0.85rem 0;
  font-family: var(--font-roboto);
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 0;
  animation: marquee-scroll 55s linear infinite;
  will-change: transform;
}

.marquee-group {
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding-right: 1.5rem;
}

.marquee-item {
  display: inline;
  font-size: clamp(0.92rem, 1.05vw, 1.05rem);
  font-weight: 400;
  line-height: 1.4;
  color: #ffffff;
  letter-spacing: 0.01em;
}

.marquee-separator {
  margin-inline: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.92rem, 1.05vw, 1.05rem);
  font-weight: 300;
}

.about-card-section {
  background: #000000;
  padding: clamp(24px, 4.4vw, 66px) 0 clamp(40px, 5vw, 74px);
}

.about-card {
  position: relative;
  width: min(1340px, calc(100% - 24px));
  margin: 0 auto;
  background: #efefef;
  color: #060606;
  border-radius: 34px;
  text-align: center;
  padding: clamp(42px, 5vw, 78px) 24px clamp(48px, 5vw, 80px);
  overflow: hidden;
}

.about-brand {
  margin: 0;
  color: var(--brand-primary);
  font-family: var(--font-hagrid);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 0.96;
}

.about-heading {
  margin: 0.16em 0 0.2em;
  font-family: var(--font-hagrid);
  font-size: clamp(2rem, 5.1vw, 5.3rem);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.about-copy {
  margin: 0 auto;
  max-width: 78ch;
  font-size: clamp(0.88rem, 1.2vw, 1.05rem);
  line-height: 1.26;
}

.about-cta {
  margin-top: 1.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  background: var(--brand-primary);
  color: #ffffff;
  border-radius: 999px;
  padding: 0.86rem 1.7rem;
  font-family: var(--font-hagrid);
  font-size: 0.86rem;
  line-height: 1;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

.about-cta .ui-arrow {
  width: 1.05em;
  height: 1.05em;
}

.about-signature-image {
  position: absolute;
  right: clamp(22px, 5vw, 58px);
  bottom: clamp(0px, 0.4vw, 12px);
  width: clamp(210px, 30vw, 430px);
  height: auto;
  pointer-events: none;
}

.benefits-section {
  background: #000000;
  padding: clamp(44px, 6vw, 84px) 0 clamp(54px, 7vw, 104px);
}

.benefits-container {
  max-width: 1360px;
}

.benefits-title {
  margin: 0;
  text-align: center;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 4.05rem);
  line-height: 1.03;
  font-weight: 500;
}

.benefits-title span {
  color: var(--brand-primary);
}

.benefits-intro {
  margin: 14px auto 0;
  max-width: 63ch;
  text-align: center;
  color: rgba(255, 255, 255, 0.87);
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  line-height: 1.3;
}

.benefits-intro p {
  margin: 0 0 0.65em;
}

.benefits-intro p:last-child {
  margin-bottom: 0;
}

.benefits-intro a {
  color: inherit;
  text-decoration: underline;
}

.benefits-grid {
  margin-top: clamp(28px, 3vw, 46px);
}

.benefit-card {
  height: 100%;
  min-height: 356px;
  border-radius: 42px;
  padding: 42px 28px 26px;
  text-align: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.01);
}

.benefit-icon-wrap {
  width: 108px;
  height: 108px;
  margin: 0 auto 24px;
  color: #ffffff;
  display: grid;
  place-items: center;
}

.benefit-icon {
  width: 90px;
  height: 90px;
}

.benefit-title {
  margin: 0 0 10px;
  color: var(--brand-primary);
  font-size: 1.3rem;
  line-height: 1.1;
  font-weight: 700;
}

.benefit-text {
  margin: 0 auto;
  max-width: 31ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.03rem;
  line-height: 1.22;
}

.logos-section {
  background: #ffffff;
  padding: clamp(40px, 5vw, 72px) 0 clamp(36px, 4.5vw, 60px);
  overflow: hidden;
}

.logos-heading-wrap {
  margin-bottom: clamp(22px, 2.8vw, 36px);
}

.logos-heading {
  color: #111111;
  line-height: 1;
  text-align: left;
}

.logos-title {
  margin: 0;
  font-size: clamp(1.45rem, 2.2vw, 2.35rem);
  font-weight: 700;
}

.logos-subtitle {
  margin: 10px 0 0;
  font-size: clamp(1.05rem, 1.2vw, 1.4rem);
  font-weight: 600;
}

.logos-slider {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
}

.logos-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: logos-scroll 36s linear infinite;
}

.logos-slider:hover .logos-track {
  animation-play-state: paused;
}

.logos-group {
  display: flex;
  align-items: center;
  gap: clamp(36px, 4.5vw, 72px);
  padding-right: clamp(36px, 4.5vw, 72px);
}

.logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: clamp(68px, 7vw, 96px);
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  color: #2d2d2d;
  font-size: clamp(0.95rem, 1.25vw, 1.28rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.logo-item--has-image {
  padding: 0;
}

.logo-item__img {
  display: block;
  max-height: clamp(52px, 5.6vw, 80px);
  max-width: clamp(130px, 15vw, 220px);
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  transition: transform 0.25s ease;
}

.logos-slider:hover .logo-item {
  opacity: 0.55;
}

.logos-slider:hover .logo-item:hover {
  opacity: 1;
  transform: scale(1.06);
}

.logo-ikea,
.logo-lidl {
  background: transparent;
  color: #2d2d2d;
}

.services-intro-section {
  background: #fff;
  color: #0e0e0e;
  padding: clamp(34px, 4.4vw, 74px) 0 clamp(38px, 4.4vw, 68px);
}

.services-intro-wrap {
  max-width: 1360px;
  text-align: center;
}

.services-intro-title {
  margin: 0;
  font-size: clamp(2rem, 5.2vw, 5.4rem);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #101010;
}

.services-intro-title span {
  color: var(--brand-primary);
}

.services-intro-text {
  margin: clamp(14px, 1.6vw, 22px) auto 0;
  max-width: 108ch;
  color: #1a1a1a;
  font-size: clamp(0.85rem, 1.04vw, 1.08rem);
  line-height: 1.28;
}

.offers-section {
  background: #fff;
  padding: 0 0 clamp(34px, 4vw, 58px);
}

.offers-cta-section {
  background: #fff;
  padding: 0 0 clamp(28px, 4vw, 48px);
}

.offers-cta-wrap {
  display: flex;
  justify-content: center;
}

.offers-cta-button {
  width: min(100%, 380px);
  min-height: 72px;
  padding: 0 28px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  background: #f2f2f2;
  color: #0f0f0f;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(1.08rem, 1.25vw, 1.3rem);
  line-height: 1;
}

.offers-cta-button .ui-arrow {
  width: 1.35em;
  height: 1.35em;
}

.projects-intro-section {
  background: #090a0f;
  padding: clamp(30px, 4.2vw, 62px) 0;
  border-radius: 60px 60px 0 0;
}

.projects-intro-wrap {
  max-width: 1360px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 1fr);
  gap: clamp(20px, 4vw, 80px);
  align-items: start;
}

.projects-intro-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.4rem, 5.5vw, 6rem);
  line-height: 0.95;
  font-weight: 500;
}

.projects-intro-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-roboto);
  font-size: clamp(0.88rem, 1.08vw, 1.08rem);
  line-height: 1.26;
  max-width: 58ch;
}

.projects-showcase-section {
  background: #090a0f;
  padding: 0 0 clamp(36px, 5vw, 72px);
  overflow: hidden;
}

.projects-showcase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1360px;
  margin-bottom: clamp(18px, 2.2vw, 28px);
}

.projects-showcase-eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.92rem, 1.1vw, 1.2rem);
  letter-spacing: 0.04em;
}

.projects-showcase-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.projects-showcase-nav[hidden] {
  display: none;
}

.projects-showcase-nav__btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.projects-showcase-nav__btn .ui-arrow {
  width: 18px;
  height: 18px;
}

.projects-showcase-nav__btn:hover,
.projects-showcase-nav__btn:focus-visible {
  background: rgba(62, 168, 244, 0.18);
  border-color: rgba(62, 168, 244, 0.7);
  outline: none;
}

.projects-showcase-nav__btn:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

.projects-showcase-slider {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-inline: max(16px, calc((100vw - 1360px) / 2 + 12px));
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-x;
}

.projects-showcase-slider::-webkit-scrollbar {
  display: none;
}

.projects-showcase-slider.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.projects-showcase-slider.is-dragging a,
.projects-showcase-slider.is-dragging img {
  pointer-events: none;
}

.projects-showcase-track {
  display: flex;
  align-items: stretch;
  gap: clamp(14px, 1.6vw, 22px);
  width: max-content;
  padding-bottom: 4px;
}

.project-card {
  flex: 0 0 auto;
  width: min(340px, calc(100vw - 56px));
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  user-select: none;
  -webkit-user-select: none;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.project-card:hover,
.project-card:focus-within {
  border-color: rgba(62, 168, 244, 0.45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}

.project-card__media {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #15171d;
  -webkit-user-drag: none;
}

.project-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
  transition: transform 0.45s ease;
}

.project-card:hover .project-card__image,
.project-card:focus-within .project-card__image {
  transform: scale(1.05);
}

.project-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 1.05rem 1.1rem 1.2rem;
  color: #ffffff;
}

.project-card__city {
  margin: 0;
  color: var(--brand-primary);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project-card__title {
  margin: 6px 0 10px;
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  line-height: 1.15;
  font-weight: 500;
}

.project-card__title a {
  color: inherit;
  text-decoration: none;
}

.project-card__title a:hover,
.project-card__title a:focus-visible {
  color: var(--brand-primary);
}

.project-card__description {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-roboto);
  font-size: 0.9rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-card__action {
  margin-top: auto;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  padding: 0.62rem 0.95rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.project-card__action .ui-arrow {
  width: 0.95em;
  height: 0.95em;
}

.project-card__action:hover,
.project-card__action:focus-visible {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #ffffff;
}

.projects-cta-section {
  background: #090a0f;
  padding: clamp(18px, 3vw, 34px) 0 clamp(30px, 4vw, 58px);
}

.projects-cta-wrap {
  display: flex;
  justify-content: center;
}

.projects-cta-button {
  width: min(100%, 350px);
  min-height: 72px;
  border-radius: 18px;
  background: var(--brand-primary);
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  font-size: clamp(0.94rem, 1.12vw, 1.08rem);
  line-height: 1;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.08);
}

.projects-cta-button .ui-arrow {
  width: 1.35em;
  height: 1.35em;
}

.about-company-section {
  background: #f2f2f2;
  padding: clamp(36px, 4.6vw, 72px) 0 clamp(28px, 3.6vw, 56px);
}

.about-company-wrap {
  max-width: 1360px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 1fr);
  gap: clamp(18px, 3vw, 52px);
  align-items: start;
}

.about-company-wrap--no-image {
  grid-template-columns: 1fr;
}

.about-company-wrap--no-image .about-company-content {
  width: 100%;
  max-width: none;
}

.about-company-wrap--no-image .about-company-text {
  max-width: none;
}

.about-company-title {
  margin: 0;
  color: #101010;
  font-size: clamp(2rem, 4.2vw, 4.6rem);
  line-height: 0.96;
  font-weight: 500;
}

.about-company-text {
  margin: clamp(12px, 1.2vw, 18px) 0 0;
  color: #1a1a1a;
  font-family: var(--font-roboto);
  font-size: clamp(0.84rem, 1.02vw, 1.02rem);
  line-height: 1.3;
  max-width: 67ch;
}

.about-company-text p {
  margin: 0 0 0.85em;
}

.about-company-text p:last-child {
  margin-bottom: 0;
}

.about-company-text a {
  color: var(--brand-primary);
}

.about-company-text ul,
.about-company-text ol {
  margin: 0.6em 0 0.85em;
  padding-left: 1.2em;
}

.about-company-action {
  margin-top: clamp(16px, 2vw, 30px);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  background: var(--brand-primary);
  color: #ffffff;
  border-radius: 14px;
  padding: 0.88rem 1.48rem;
  font-size: clamp(0.72rem, 0.84vw, 0.84rem);
  line-height: 1;
}

.about-company-action .ui-arrow {
  width: 1.1em;
  height: 1.1em;
}

.about-company-image {
  width: 100%;
  height: clamp(330px, 42vw, 730px);
  object-fit: cover;
  border-radius: 24px;
}

.faq-section {
  background: #ffffff;
  padding: clamp(30px, 4.2vw, 68px) 0 clamp(34px, 4.8vw, 76px);
}

.faq-wrap {
  max-width: 1440px;
}

.faq-title {
  margin: 0 0 clamp(20px, 2.4vw, 34px);
  text-align: center;
  color: var(--brand-primary);
  font-size: clamp(2rem, 4.4vw, 4.8rem);
  line-height: 1;
  font-weight: 500;
}

.faq-card {
  border: 1px solid rgba(62, 168, 244, 0.55);
  border-radius: 16px;
  background: #ffffff;
  padding: clamp(18px, 2.6vw, 36px) clamp(16px, 2.4vw, 40px);
}

.faq-accordion {
  --bs-accordion-border-width: 0;
  --bs-accordion-bg: transparent;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-btn-color: #111111;
  --bs-accordion-active-color: #111111;
}

.faq-item {
  border-bottom: 1px solid rgba(62, 168, 244, 0.45);
  background: transparent;
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-button {
  position: relative;
  padding: clamp(16px, 1.8vw, 22px) 0;
  font-size: clamp(1.34rem, 2vw, 2.15rem);
  line-height: 1.08;
  box-shadow: none !important;
  border: 0 !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.faq-button::after {
  display: none;
}

.faq-symbol {
  flex: 0 0 auto;
  color: #0e57aa;
  font-size: 1.2em;
  line-height: 1;
}

.faq-button .faq-symbol::before {
  content: "+";
}

.faq-button:not(.collapsed) .faq-symbol::before {
  content: "-";
}

.faq-body {
  padding: 0 0 clamp(14px, 1.6vw, 22px);
  color: #7e8083;
  font-family: var(--font-roboto);
  font-size: clamp(0.9rem, 1.02vw, 1.04rem);
  line-height: 1.35;
}

.contact-section {
  background: #ffffff;
  padding: clamp(34px, 4.8vw, 86px) 0 clamp(40px, 5vw, 94px);
}

.contact-wrap {
  max-width: 1440px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: clamp(24px, 4.5vw, 86px);
  align-items: center;
}

.contact-title {
  margin: 0;
  color: #101010;
  font-size: clamp(1.9rem, 4.2vw, 4.6rem);
  line-height: 0.95;
  font-weight: 500;
}

.contact-title span {
  color: var(--brand-primary);
}

.contact-description {
  margin: clamp(22px, 2.8vw, 50px) 0 0;
  color: #121212;
  font-family: var(--font-roboto);
  font-size: clamp(1rem, 1.45vw, 1.72rem);
  line-height: 1.12;
}

.contact-description strong {
  font-weight: 700;
}

.contact-details {
  list-style: none;
  margin: clamp(28px, 3.2vw, 48px) 0 0;
  padding: 0;
  display: grid;
  gap: clamp(14px, 1.6vw, 20px);
}

.contact-details__item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.contact-details__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 106, 171, 0.1);
  color: var(--brand-primary);
}

.contact-details__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.contact-details__label {
  display: block;
  margin-bottom: 2px;
  color: #6b6f76;
  font-family: var(--font-roboto);
  font-size: clamp(0.78rem, 0.9vw, 0.9rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.contact-details__value {
  color: #121212;
  font-family: var(--font-roboto);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.35;
  font-weight: 500;
  text-decoration: none;
}

a.contact-details__value:hover,
a.contact-details__value:focus {
  color: var(--brand-primary);
}

.contact-details__value--address {
  white-space: pre-line;
}

.contact-form-side {
  width: 100%;
}

.contact-logo {
  width: 300px;
  height: auto;
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(18px, 2.4vw, 32px);
}

.contact-form {
  width: min(100%, 540px);
}

.contact-field {
  margin-bottom: clamp(12px, 1.4vw, 18px);
}

.contact-field label {
  display: block;
  margin-bottom: 6px;
  color: #111111;
  font-family: var(--font-roboto);
  font-size: clamp(0.9rem, 1vw, 1.06rem);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  background: #ffffff;
  border-radius: 0;
  color: #111111;
  font-family: var(--font-roboto);
  font-size: clamp(0.96rem, 1vw, 1.08rem);
  outline: none;
  padding: 0 0 8px;
}

.contact-field textarea {
  resize: vertical;
  min-height: 116px;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-bottom-color: var(--brand-primary);
}

.contact-required {
  color: #d63638;
}

.contact-field--honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-consents {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: clamp(14px, 1.6vw, 20px);
}

.contact-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 0;
  color: #111111;
  font-family: var(--font-roboto);
  font-size: clamp(0.72rem, 0.82vw, 0.86rem);
  line-height: 1.4;
  cursor: pointer;
}

.contact-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--brand-primary);
  flex-shrink: 0;
}

.contact-consent a {
  color: #0b84dc;
  text-decoration: underline;
}

.contact-form-status {
  margin: 14px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  font-family: var(--font-roboto);
  font-size: 0.88rem;
  line-height: 1.35;
}

.contact-form-status[hidden] {
  display: none !important;
}

.contact-form-status.is-success {
  background: rgba(57, 181, 74, 0.12);
  color: #1f7a2d;
}

.contact-form-status.is-error {
  background: rgba(214, 54, 56, 0.1);
  color: #a32022;
}

.contact-submit {
  margin-top: clamp(20px, 2.2vw, 34px);
  margin-left: auto;
  width: min(100%, 340px);
  min-height: 66px;
  border: 0;
  border-radius: 17px;
  background: var(--brand-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  font-size: clamp(0.8rem, 0.94vw, 0.94rem);
  line-height: 1;
  cursor: pointer;
}

.contact-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.contact-submit .ui-arrow {
  width: 1.35em;
  height: 1.35em;
}

.site-footer {
  background: #f2f2f2;
  color: #151515;
  padding: clamp(30px, 4vw, 58px) 0 clamp(20px, 3vw, 34px);
}

.footer-wrap {
  max-width: 1440px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr) minmax(260px, 1fr);
  gap: clamp(18px, 3vw, 54px);
  align-items: start;
}

.footer-heading {
  margin: 0 0 10px;
  color: #151515;
  font-size: clamp(1.28rem, 1.55vw, 1.9rem);
  line-height: 1;
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list li {
  margin: 0;
}

.footer-list a {
  color: rgba(21, 21, 21, 0.7);
  text-decoration: none;
  font-family: var(--font-roboto);
  font-size: clamp(0.84rem, 0.98vw, 1.04rem);
  line-height: 1.45;
}

.footer-list a:hover {
  color: #151515;
}

.footer-brand-col {
  justify-self: end;
  text-align: right;
}

.footer-logo {
  width: min(100%, 430px);
  height: auto;
  display: block;
  margin-left: auto;
}

.footer-contact {
  margin-top: clamp(22px, 2.4vw, 38px);
  font-family: var(--font-roboto);
  font-size: clamp(0.86rem, 0.98vw, 1.02rem);
  line-height: 1.3;
}

.footer-contact-title {
  margin: 0 0 2px;
  font-family: var(--font-hagrid);
  font-size: clamp(1rem, 1.08vw, 1.16rem);
}

.footer-contact p {
  margin: 0;
}

.footer-bottom {
  max-width: 1440px;
  margin-top: clamp(22px, 2.6vw, 36px);
  padding-top: clamp(8px, 1vw, 12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--font-roboto);
  font-size: clamp(0.82rem, 0.92vw, 0.98rem);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #151515;
  text-decoration: none;
}

.offers-wrap {
  display: grid;
  gap: clamp(14px, 2vw, 24px);
}

.offer-card {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 1fr);
  gap: clamp(16px, 2.2vw, 30px);
  align-items: center;
  border: 1px solid rgba(62, 168, 244, 0.6);
  border-radius: 28px;
  padding: clamp(18px, 2vw, 28px);
  background: #f2f2f2;
}

.offer-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offer-title {
  margin: 0;
  color: #0f0f0f;
  font-size: clamp(1.2rem, 2.2vw, 2.2rem);
  line-height: 0.95;
  font-weight: 500;
}

.offer-description-wrap {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px);
  transition:
    max-height 0.72s ease,
    opacity 0.56s ease,
    transform 0.56s ease;
}

.offer-card:hover .offer-description-wrap,
.offer-card:focus-within .offer-description-wrap {
  max-height: 260px;
  opacity: 1;
  transform: translateY(0);
}

.offer-description {
  margin: 16px 0 0;
  max-width: 63ch;
  color: #171717;
  font-family: var(--font-roboto);
  font-size: clamp(0.84rem, 1.02vw, 1.02rem);
  line-height: 1.34;
}

.offer-action {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  background: var(--brand-primary);
  color: #ffffff;
  border-radius: 14px;
  padding: 0.84rem 1.4rem;
  font-size: clamp(0.7rem, 0.82vw, 0.8rem);
  line-height: 1;
  width: fit-content;
}

.offer-action .ui-arrow {
  width: 1.05em;
  height: 1.05em;
}

.offer-image {
  width: 100%;
  height: clamp(210px, 23vw, 334px);
  object-fit: cover;
  border-radius: 26px;
  align-self: start;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes logos-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1199.98px) and (min-width: 992px) {
  .island-navbar .navbar-nav .sub-menu {
    width: min(780px, calc(100vw - 40px));
  }

  .island-navbar .navbar-nav .mega-menu__list-col {
    flex-basis: min(300px, 44%);
  }

  .island-navbar .navbar-nav .mega-menu__preview {
    min-height: 280px;
  }
}

@media (max-width: 991.98px) {
  .island-navbar {
    width: calc(100% - 22px);
    top: 10px;
    border-radius: 16px;
  }

  .admin-bar .island-navbar {
    top: 56px;
  }

  .hero-content-wrap {
    min-height: calc(94vh - 82px);
    padding-inline: 10px;
  }

  .hero-content {
    margin-right: 0;
    border-radius: 24px;
  }

  .island-navbar .navbar-collapse {
    padding-bottom: 0.55rem;
  }

  .island-navbar .navbar-nav {
    width: 100%;
  }

  .island-navbar .navbar-nav .menu-item {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .island-navbar .navbar-nav > .menu-item > a {
    width: 100%;
    justify-content: space-between;
    padding: 0.72rem 0 !important;
  }

  .island-navbar .navbar-nav .sub-menu {
    position: static;
    min-width: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 0.28rem;
    border-radius: 12px;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.08);
    margin: 0.24rem 0 0.55rem;
    background: #f7f9fb;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none !important;
    padding: 0.45rem;
  }

  .island-navbar .navbar-nav .sub-menu::before {
    display: none;
  }

  .island-navbar .navbar-nav .menu-item-has-children:hover > .sub-menu,
  .island-navbar .navbar-nav .menu-item-has-children:focus-within > .sub-menu {
    display: flex;
  }

  .island-navbar .navbar-nav .mega-menu__list-col {
    flex: 1 1 auto;
    width: 100%;
  }

  .island-navbar .navbar-nav .mega-menu__list {
    max-height: none;
    overflow: visible;
    padding: 0;
  }

  .island-navbar .navbar-nav .mega-menu__preview {
    display: none;
  }

  .island-navbar .navbar-nav .mega-menu__list > .menu-item > a,
  .island-navbar .navbar-nav .sub-menu:not(.mega-menu) > .menu-item > a {
    min-height: 0;
    height: auto;
    border: 0;
    border-radius: 10px;
    background: transparent;
    box-shadow: none;
    padding: 0.62rem 0.7rem;
    font-size: 0.86rem;
    font-weight: 600;
    color: #111111;
    text-shadow: none;
    align-items: center;
    isolation: auto;
  }

  .island-navbar .navbar-nav .mega-menu__list > .menu-item > a::before {
    display: none;
  }

  .island-navbar .navbar-nav .mega-menu__list > .menu-item > a.is-active,
  .island-navbar .navbar-nav .mega-menu__list > .menu-item > a:hover,
  .island-navbar .navbar-nav .mega-menu__list > .menu-item > a:focus,
  .island-navbar .navbar-nav .sub-menu:not(.mega-menu) > .menu-item > a:hover,
  .island-navbar .navbar-nav .sub-menu:not(.mega-menu) > .menu-item > a:focus {
    background: rgba(62, 168, 244, 0.1);
    color: #0b84dc;
    transform: none;
    box-shadow: none;
  }

  .contact-mail {
    width: 100%;
    text-align: center;
  }

  .contact-phone {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .nav-contact-wrap {
    position: relative;
    width: 100%;
    align-items: stretch;
    margin-top: 0.95rem !important;
    padding-bottom: 0.95rem;
  }

  .nav-contact-wrap::after {
    content: "";
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 0.65rem;
  }

  .marquee-track {
    animation-duration: 42s;
  }

  .marquee-item {
    font-size: 0.88rem;
  }

  .about-card {
    border-radius: 24px;
    width: calc(100% - 16px);
  }

  .about-signature-image {
    right: 16px;
    bottom: 4px;
  }

  .benefit-card {
    min-height: 320px;
    border-radius: 34px;
    padding: 30px 22px 24px;
  }

  .benefit-title {
    font-size: 1.15rem;
  }

  .benefit-text {
    font-size: 0.92rem;
  }

  .logos-heading-wrap {
    margin-bottom: 18px;
  }

  .logos-track {
    animation-duration: 28s;
  }

  .logo-item {
    height: 58px;
  }

  .logo-item__img {
    max-height: 44px;
    max-width: 140px;
  }

  .services-intro-title {
    line-height: 1.02;
  }

  .services-intro-text {
    max-width: 76ch;
    line-height: 1.35;
  }

  .offer-card {
    grid-template-columns: 1fr;
  }

  .offers-cta-button {
    min-height: 78px;
    padding: 0 28px;
    border-radius: 20px;
    font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  }

  .projects-intro-wrap {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .projects-showcase-slider {
    padding-inline: 16px;
  }

  .project-card {
    width: min(300px, calc(100vw - 48px));
  }

  .projects-cta-button {
    min-height: 80px;
    border-radius: 18px;
    padding: 0 24px;
    font-size: clamp(0.96rem, 1.8vw, 1.2rem);
  }

  .about-company-wrap {
    grid-template-columns: 1fr;
  }

  .about-company-image {
    height: 360px;
  }

  .faq-button {
    font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  }

  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-description {
    max-width: 36ch;
  }

  .contact-form {
    width: 100%;
  }

  .contact-submit {
    margin-left: 0;
  }

  .footer-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }

  .footer-logo {
    margin-left: 0;
  }

  .offer-image {
    height: 220px;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    border-radius: 0 0 28px 28px;
  }

  .hero-content {
    padding: 22px 18px 20px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn-hero {
    width: 100%;
    text-align: center;
  }

  .contact-mail {
    font-size: 0.76rem;
  }

  .contact-phone {
    width: 100%;
    min-height: 54px;
    border-radius: 999px;
    font-size: 0.92rem;
  }

  .marquee-track {
    animation-duration: 32s;
  }

  .marquee-separator {
    margin-inline: 0.8rem;
  }

  .about-card {
    border-radius: 20px;
    padding: 34px 16px 80px;
  }

  .about-heading {
    line-height: 1.02;
  }

  .about-copy {
    line-height: 1.35;
  }

  .about-signature-image {
    width: clamp(180px, 52vw, 290px);
    right: 12px;
    bottom: 10px;
  }

  .benefits-intro {
    max-width: 38ch;
    line-height: 1.4;
  }

  .benefit-card {
    min-height: 282px;
    border-radius: 28px;
    padding: 24px 16px 20px;
  }

  .benefit-icon-wrap {
    width: 90px;
    height: 90px;
    margin-bottom: 18px;
  }

  .benefit-icon {
    width: 72px;
    height: 72px;
  }

  .benefit-title {
    font-size: 1rem;
  }

  .benefit-text {
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .logos-section {
    padding: 28px 0;
  }

  .logos-track {
    animation-duration: 22s;
  }

  .logo-item {
    height: 48px;
    font-size: 0.84rem;
    padding: 0;
  }

  .logo-item--has-image {
    padding: 0;
  }

  .logo-item__img {
    max-height: 36px;
    max-width: 120px;
  }

  .logos-slider:hover .logo-item,
  .logos-slider:hover .logo-item:hover {
    opacity: 1;
    transform: none;
  }

  .services-intro-section {
    padding: 24px 0 30px;
  }

  .services-intro-title {
    font-size: clamp(1.8rem, 10vw, 2.8rem);
    line-height: 1.05;
  }

  .services-intro-text {
    margin-top: 12px;
    max-width: 44ch;
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .offer-card {
    border-radius: 20px;
    padding: 14px;
    gap: 12px;
  }

  .offers-cta-section {
    padding-bottom: 26px;
  }

  .offers-cta-button {
    min-height: 64px;
    padding: 0 22px;
    border-radius: 16px;
    font-size: 0.98rem;
  }

  .projects-intro-section {
    padding: 24px 0;
  }

  .projects-intro-title {
    font-size: clamp(2rem, 13vw, 3rem);
    line-height: 1;
  }

  .projects-intro-text {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .projects-showcase-eyebrow {
    font-size: 0.78rem;
  }

  .projects-showcase-header {
    margin-bottom: 14px;
  }

  .projects-showcase-nav__btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .project-card {
    width: min(280px, calc(100vw - 40px));
    border-radius: 16px;
  }

  .project-card__body {
    padding: 0.9rem 0.95rem 1rem;
  }

  .project-card__title {
    font-size: 1.15rem;
  }

  .project-card__description {
    font-size: 0.82rem;
    -webkit-line-clamp: 2;
  }

  .project-card__action {
    margin-top: 0.85rem;
    border-radius: 10px;
    padding: 0.55rem 0.85rem;
    font-size: 0.68rem;
  }

  .projects-cta-section {
    padding: 12px 0 24px;
  }

  .projects-cta-button {
    min-height: 64px;
    border-radius: 14px;
    padding: 0 18px;
    font-size: 0.9rem;
  }

  .about-company-section {
    padding: 22px 0 22px;
  }

  .about-company-title {
    font-size: clamp(1.75rem, 10vw, 2.7rem);
    line-height: 1.03;
  }

  .about-company-text {
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .about-company-action {
    margin-top: 14px;
    border-radius: 12px;
    padding: 0.72rem 1.08rem;
    font-size: 0.68rem;
  }

  .about-company-image {
    height: 220px;
    border-radius: 16px;
  }

  .faq-section {
    padding: 24px 0 30px;
  }

  .faq-card {
    border-radius: 12px;
    padding: 12px 14px;
  }

  .faq-button {
    font-size: 0.98rem;
    padding: 12px 0;
    line-height: 1.28;
  }

  .faq-symbol {
    font-size: 1.28rem;
  }

  .faq-body {
    font-size: 0.8rem;
    line-height: 1.4;
    padding-bottom: 12px;
  }

  .contact-section {
    padding: 24px 0 32px;
  }

  .contact-title {
    font-size: clamp(1.6rem, 9.8vw, 2.45rem);
    line-height: 1.04;
  }

  .contact-description {
    margin-top: 14px;
    max-width: 25ch;
    font-size: 0.92rem;
    line-height: 1.2;
  }

  .contact-details {
    margin-top: 18px;
    gap: 12px;
  }

  .contact-details__item {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
  }

  .contact-details__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .contact-details__value {
    font-size: 0.95rem;
  }

  .contact-logo {
    width: min(100%, 360px);
    margin-bottom: 12px;
  }

  .contact-field label {
    font-size: 0.82rem;
  }

  .contact-field input,
  .contact-field textarea {
    font-size: 0.9rem;
  }

  .contact-field textarea {
    min-height: 92px;
  }

  .contact-consent {
    font-size: 0.72rem;
  }

  .contact-submit {
    min-height: 62px;
    border-radius: 14px;
    font-size: 0.84rem;
    padding: 0 18px;
  }

  .site-footer {
    padding: 26px 0 18px;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-brand-col {
    text-align: left;
  }

  .footer-logo {
    width: min(100%, 280px);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-size: 0.76rem;
  }

  .offer-title {
    font-size: clamp(1.95rem, 10vw, 2.9rem);
    line-height: 1.02;
  }

  .offer-description-wrap {
    max-height: 260px;
    opacity: 1;
    transform: none;
  }

  .offer-description {
    margin-top: 10px;
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .offer-action {
    margin-top: 12px;
    border-radius: 12px;
    padding: 0.72rem 1.1rem;
    font-size: 0.68rem;
  }

  .offer-image {
    border-radius: 18px;
    height: 170px;
  }
}

body.page {
  background: #ffffff;
}

body.page .island-navbar {
  top: 16px;
}

.page-standard-section,
.page-content-section {
  background: #ffffff;
  padding: clamp(36px, 4.5vw, 64px) 0 clamp(48px, 5vw, 80px);
  color: #121212;
}

.breadcrumbs-section {
  background: #f2f2f2;
  padding: clamp(72px, 8vw, 110px) 0 0;
}

.page-hero {
  position: relative;
  width: calc(100% - 20px);
  margin: 0 10px;
  min-height: clamp(220px, 32vw, 340px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 0 0 30px 30px;
  background: #000;
  color: #ffffff;
}

.page-hero--has-image {
  background: #000;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 10, 14, 0.35) 0%, rgba(8, 10, 14, 0.72) 100%),
    linear-gradient(90deg, rgba(8, 10, 14, 0.82) 0%, rgba(8, 10, 14, 0.45) 55%, rgba(8, 10, 14, 0.2) 100%);
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(88px, 10vw, 120px) clamp(20px, 3vw, 32px) clamp(28px, 4vw, 44px);
}

.page-hero__breadcrumbs {
  margin-bottom: clamp(18px, 2.5vw, 28px);
}

.page-hero__breadcrumbs .site-breadcrumbs ol {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.page-hero__breadcrumbs .site-breadcrumbs li,
.page-hero__breadcrumbs .site-breadcrumbs li + li::before {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero__breadcrumbs .site-breadcrumbs a {
  color: rgba(255, 255, 255, 0.9);
}

.page-hero__breadcrumbs .site-breadcrumbs a:hover,
.page-hero__breadcrumbs .site-breadcrumbs a:focus-visible {
  color: #ffffff;
}

.page-hero__breadcrumbs .site-breadcrumbs span {
  color: #ffffff;
}

.page-hero__content {
  max-width: 920px;
}

.page-hero__kicker {
  margin: 0 0 12px;
  font-family: var(--font-roboto);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.72);
}

.page-hero__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.85rem, 4.2vw, 3.35rem);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.page-hero__title--plain {
  color: #101010;
}

.page-content-wrap {
  max-width: 820px;
}

.page-content {
  margin: 0;
}

.page-content__body {
  color: #1b1b1b;
  font-family: var(--font-roboto);
  font-size: clamp(0.98rem, 1.05vw, 1.1rem);
  line-height: 1.72;
}

.page-content__body > *:first-child {
  margin-top: 0;
}

.page-content__body > *:last-child {
  margin-bottom: 0;
}

.page-content__body h2,
.page-content__body h3,
.page-content__body h4 {
  color: #101010;
  font-family: var(--font-hagrid);
  font-weight: 500;
  line-height: 1.15;
  margin-top: 2rem;
  margin-bottom: 0.65rem;
}

.page-content__body h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.page-content__body h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
}

.page-content__body h4 {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
}

.page-content__body p {
  margin: 0 0 1.15em;
}

.page-content__body strong {
  color: #0e0e0e;
  font-weight: 600;
}

.page-content__body a {
  color: #137fd1;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.page-content__body a:hover,
.page-content__body a:focus-visible {
  color: #0b63a8;
}

.page-content__body ul,
.page-content__body ol {
  margin: 0 0 1.25em;
  padding-left: 1.35em;
}

.page-content__body li {
  margin-bottom: 0.45em;
}

.page-content__body li::marker {
  color: var(--brand-primary);
}

.page-content__body blockquote {
  margin: 1.5em 0;
  padding: 1.1rem 1.25rem;
  border-left: 4px solid var(--brand-primary);
  background: #f6f8fa;
  border-radius: 0 12px 12px 0;
  color: #2a2a2a;
}

.page-content__body img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
}

.page-content__body .wp-block-image {
  margin: 1.75em 0;
}

.page-content__body table {
  width: 100%;
  margin: 1.5em 0;
  border-collapse: collapse;
  font-size: 0.95em;
}

.page-content__body th,
.page-content__body td {
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
}

.page-content__body th {
  background: #f4f6f8;
  font-weight: 600;
}

/* Legacy — archiwa / starsze klasy */
.page-standard-wrap {
  max-width: 820px;
}

.page-standard-card {
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.page-standard-hero {
  margin-bottom: clamp(18px, 2.8vw, 30px);
  border-radius: 18px;
  background: linear-gradient(135deg, #121212 0%, #1f2732 45%, #3ea8f4 135%);
  padding: clamp(22px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(16px, 2.4vw, 28px);
  overflow: hidden;
  position: relative;
}

.page-standard-hero::after {
  content: "";
  position: absolute;
  width: clamp(180px, 30vw, 280px);
  aspect-ratio: 1 / 1;
  right: -72px;
  top: -86px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 168, 244, 0.35), rgba(62, 168, 244, 0));
}

.page-standard-hero-content {
  position: relative;
  z-index: 1;
}

.page-standard-kicker {
  margin: 0 0 10px;
  font-family: var(--font-roboto);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.76);
}

.page-standard-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 0.96;
}

.page-standard-thumbnail {
  margin: 0;
  position: relative;
  z-index: 1;
}

.page-standard-thumbnail img {
  width: 100%;
  height: clamp(170px, 24vw, 260px);
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.page-standard-content {
  color: #1b1b1b;
  font-family: var(--font-roboto);
  font-size: clamp(0.96rem, 1.08vw, 1.08rem);
  line-height: 1.65;
}

.page-standard-content h2,
.page-standard-content h3,
.page-standard-content h4 {
  color: #101010;
  font-family: var(--font-hagrid);
  margin-top: 1.4em;
  margin-bottom: 0.45em;
}

.page-standard-content p {
  margin: 0 0 1em;
}

.page-standard-content a {
  color: #137fd1;
}

body:not(.home):not(.front-page) .services-intro-title,
body:not(.home):not(.front-page) .about-company-title,
body:not(.home):not(.front-page) .faq-title,
body:not(.home):not(.front-page) .page-standard-title,
body:not(.home):not(.front-page) .page-hero__title {
  margin-top: 0;
}

.site-breadcrumbs {
  overflow-x: auto;
}

.site-breadcrumbs ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  white-space: nowrap;
  backdrop-filter: blur(6px);
}

.site-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-roboto);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #53565d;
}

.site-breadcrumbs li + li::before {
  content: "/";
  margin-right: 10px;
  color: #8c8f97;
}

.site-breadcrumbs a {
  color: #2d2f33;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-breadcrumbs a:hover,
.site-breadcrumbs a:focus-visible {
  color: #3ea8f4;
}

.site-breadcrumbs span {
  color: #16171a;
}

@media (max-width: 991.98px) {
  .page-hero__inner {
    padding-top: clamp(76px, 12vw, 96px);
  }

  .page-content__body {
    line-height: 1.65;
  }
}

@media (max-width: 575.98px) {
  .page-hero {
    width: 100%;
    margin: 0;
    border-radius: 0 0 22px 22px;
    min-height: clamp(200px, 52vw, 280px);
  }

  .page-hero__inner {
    padding: 72px 16px 22px;
  }

  .page-hero__title {
    font-size: clamp(1.4rem, 7.5vw, 2rem);
  }

  .site-breadcrumbs ol {
    font-size: 0.7rem;
    padding: 0.4rem 0.72rem;
    gap: 8px;
  }

  .page-content-section,
  .page-standard-section {
    padding: 28px 0 36px;
  }

  .page-content__body {
    font-size: 0.94rem;
    line-height: 1.58;
  }
}
