:root {
  --bg: #02060c;
  --bg-soft: #08111d;
  --panel: linear-gradient(180deg, rgba(14,20,31,0.96), rgba(9,14,24,0.95));
  --panel-2: linear-gradient(180deg, rgba(18,26,40,0.95), rgba(9,14,24,0.94));
  --stroke: rgba(255,255,255,0.1);
  --stroke-strong: rgba(255,196,0,0.28);
  --text: #f5f7fb;
  --muted: #c6ceda;
  --accent: #ffc400;
  --accent-soft: rgba(255,196,0,0.18);
  --shadow: 0 18px 40px rgba(0,0,0,0.45);
  --radius: 24px;
  --radius-sm: 18px;
  --maxw: 1280px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.035), transparent 34rem),
    linear-gradient(180deg, #181b20 0%, #111318 100%);
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(10,42,89,0.35), transparent 32%),
    radial-gradient(circle at left center, rgba(255,196,0,0.06), transparent 22%),
    linear-gradient(180deg, #010307 0%, #050912 100%);
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p, li { line-height: 1.6; }
.page-shell {
  width: min(95vw, var(--maxw));
  margin: 22px auto;
  border: 1px solid var(--stroke);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(3,8,16,0.94), rgba(3,7,14,0.97));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px 34px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.logo { display: inline-flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.logo-main {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 0.12em;
}
.logo-sub {
  font-size: 0.72rem;
  letter-spacing: 0.45em;
  opacity: 0.95;
  margin-top: 2px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.main-nav a {
  color: #eef1f7;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 10px 16px;
  border-radius: 999px;
  transition: 0.2s ease;
}
.main-nav a:hover,
.main-nav a:focus-visible {
  background: var(--accent-soft);
  color: var(--accent);
  outline: none;
}
main { padding: 12px 26px 30px; }
.content-section { margin-top: 16px; }
.section-title {
  display: inline-flex;
  align-items: center;
  min-width: min(100%, 320px);
  padding: 18px 34px;
  margin: 0 0 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.05));
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.04), 0 10px 30px rgba(0,0,0,0.2);
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  position: relative;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 36px;
  bottom: 10px;
  width: 86px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,196,0,0.2), var(--accent), rgba(255,196,0,0.2));
  box-shadow: 0 0 18px rgba(255,196,0,0.65);
}
.section-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 18px;
  align-items: start;
}
.section-grid--contact { grid-template-columns: 1fr 1.05fr; }
.section-card, .section-visual {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
}
.section-copy {
  padding: 28px 28px 24px;
  font-size: 1.12rem;
}
.section-copy p:first-child { margin-top: 0; }
.section-copy p:last-child { margin-bottom: 0; }
.section-visual {
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.section-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.lead-emphasis {
  margin-top: 20px;
  color: var(--accent);
  font-weight: 700;
}
.service-list {
  margin: 18px 0;
  padding-left: 22px;
}
.service-list li { margin-bottom: 16px; }
.service-list strong { display: block; font-size: 1.12rem; margin-bottom: 4px; }
.contact-layout {
  display: grid;
  gap: 16px;
}
.contact-intro {
  font-size: 1.3rem;
  margin: 0;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.info-card {
  border: 1px solid rgba(255,196,0,0.16);
  border-radius: var(--radius-sm);
  background: var(--panel-2);
  padding: 22px;
  min-height: 170px;
}
.info-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  color: var(--text);
}
.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}
.info-card a { color: var(--accent); font-weight: 700; }
.bottom-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.small-card {
  padding: 24px;
  min-height: 100%;
}
.small-card h3 {
  margin: 0 0 14px;
  font-size: 1.2rem;
}
.small-card p,
.small-card li { color: var(--muted); }
.values-list {
  margin: 0;
  padding-left: 18px;
}
.values-list li { margin-bottom: 10px; }
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 28px 24px;
  text-align: center;
  color: #9ca6b5;
}
@media (max-width: 1100px) {
  .contact-cards,
  .bottom-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 880px) {
  .page-shell {
    width: 100%;
    margin: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 20px 18px;
  }
  .main-nav { gap: 8px; }
  main { padding: 10px 0 24px; }
  .content-section { margin-top: 12px; }
  .section-title {
    width: calc(100vw - 24px);
    margin: 0 12px 14px;
    min-width: 0;
    justify-content: center;
    font-size: clamp(1.7rem, 7vw, 2.6rem);
    padding: 16px 22px;
  }
  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .section-grid,
  .section-grid--contact {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .mobile-priority {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }
  .section-card,
  .contact-layout,
  .contact-cards,
  .bottom-grid {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    border-radius: 0;
  }
  .section-copy,
  .small-card,
  .info-card {
    padding: 22px 18px;
  }
  .contact-cards,
  .bottom-grid { grid-template-columns: 1fr; gap: 12px; }
  .info-card { min-height: auto; }
}

.section-grid,
.section-grid--firm,
.section-grid--services,
.section-grid--contact {
  align-items: start !important;
}

.section-visual,
.mobile-priority {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  overflow: hidden !important;
  flex: 0 0 auto !important;
  align-self: start !important;
  display: block !important;
  contain: layout paint !important;
}

.section-visual img,
.mobile-priority img {
  position: static !important;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  aspect-ratio: 1536 / 864 !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: translateZ(0);
  backface-visibility: hidden;
}

@media (max-width: 880px) {
  .section-visual,
  .mobile-priority {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    border-radius: 0 !important;
  }

  .section-visual img,
  .mobile-priority img {
    width: 100vw !important;
    height: auto !important;
  }
}

html {
  scroll-padding-top: 104px;
}

body {
  padding-top: 92px;
}

.site-header {
  position: fixed !important;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: min(95vw, var(--maxw));
  border: 1px solid rgba(255,255,255,0.10);
  border-top: 0;
  border-radius: 0 0 24px 24px;
  background: rgba(3, 8, 16, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 34px rgba(0,0,0,0.38);
}

.page-shell {
  margin-top: 0 !important;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hamburger {
  display: none;
  width: 48px;
  height: 44px;
  border: 1px solid rgba(255,196,0,0.28);
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(255,196,0,0.15), rgba(255,196,0,0.04));
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 0 22px rgba(255,196,0,0.12);
}

.hamburger span {
  display: block;
  width: 23px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(255,196,0,0.65);
  transition: transform .22s ease, opacity .22s ease;
}

.nav-toggle:checked + .hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}

.nav-toggle:checked + .hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,0.28), transparent 28%),
    linear-gradient(180deg, rgba(255,196,0,0.24), rgba(255,196,0,0.07));
  border: 1px solid rgba(255,196,0,0.35);
  box-shadow: 0 0 26px rgba(255,196,0,0.14), inset 0 1px 0 rgba(255,255,255,0.18);
}

.icon-badge svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.info-card,
.small-card {
  position: relative;
}

.info-card h3,
.small-card h3 {
  color: #fff;
}

@media (max-width: 880px) {
  html {
    scroll-padding-top: 88px;
  }

  body {
    padding-top: 74px;
  }

  .site-header {
    width: 100%;
    left: 0;
    transform: none;
    min-height: 74px;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 14px !important;
    border-radius: 0 0 20px 20px;
  }

  .logo-main {
    font-size: 1.72rem !important;
  }

  .logo-sub {
    font-size: .52rem !important;
    letter-spacing: .38em !important;
  }

  .hamburger {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 12px;
    left: 12px;
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(255,196,0,0.24);
    border-radius: 20px;
    background: rgba(5, 10, 18, 0.97);
    box-shadow: 0 22px 40px rgba(0,0,0,0.48);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  }

  .nav-toggle:checked ~ .main-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav a {
    width: 100%;
    padding: 15px 16px;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: linear-gradient(180deg, rgba(255,196,0,0.22), rgba(255,196,0,0.08));
  }

  .icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    margin-bottom: 14px;
  }
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  max-width: min(42vw, 260px);
}
.logo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 76px;
  object-fit: contain;
}
@media (max-width: 880px) {
  .logo {
    max-width: 165px;
  }
  .logo img {
    max-height: 48px;
  }
}

.logo img {
  object-fit: contain !important;
}

@media (max-width: 880px) {
  html {
    scroll-padding-top: 112px !important;
  }

  body {
    padding-top: 96px !important;
  }

  .site-header {
    min-height: 96px !important;
    padding: 12px 14px !important;
  }

  .logo {
    max-width: min(72vw, 310px) !important;
    width: min(72vw, 310px) !important;
  }

  .logo img {
    width: 100% !important;
    max-height: 76px !important;
  }

  .hamburger {
    width: 48px !important;
    height: 44px !important;
    flex: 0 0 auto !important;
  }

  .section-title {
    width: calc(100vw - 24px) !important;
    margin-left: 12px !important;
    margin-right: 12px !important;
    border-radius: 22px !important;
  }

  .section-visual,
  .mobile-priority {
    width: calc(100vw - 24px) !important;
    margin-left: 12px !important;
    margin-right: 12px !important;
    border-radius: 22px !important;
    border-left: 1px solid var(--stroke) !important;
    border-right: 1px solid var(--stroke) !important;
    overflow: hidden !important;
  }

  .section-visual img,
  .mobile-priority img {
    width: 100% !important;
    height: auto !important;
    border-radius: 0 !important;
  }
}

@media (max-width: 880px) {
  .site-header {
    padding-left: 0 !important;
    padding-right: 14px !important;
  }

  .logo {
    margin-left: 0 !important;
    padding-left: 0 !important;
    justify-content: flex-start !important;
    max-width: min(54vw, 235px) !important;
    width: min(54vw, 235px) !important;
  }

  .logo img {
    max-height: 58px !important;
    object-position: left center !important;
  }
}

.values-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 18px;
  border: 1px solid var(--stroke);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(10,16,27,0.98), rgba(6,11,20,0.98));
  box-shadow: var(--shadow);
}

.value-item {
  padding: 26px 18px 24px;
  text-align: center;
  position: relative;
}

.value-item + .value-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 1px;
  background: rgba(255,255,255,0.18);
}

.value-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.value-icon svg {
  width: 44px;
  height: 44px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 0.2;
}

.value-item h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.03rem;
  letter-spacing: 0.03em;
}

.value-item p {
  margin: 0;
  color: #edf1f6;
  line-height: 1.65;
  font-size: 1rem;
}

@media (max-width: 1100px) {
  .values-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-item:nth-child(3)::before {
    display: none;
  }

  .value-item:nth-child(3),
  .value-item:nth-child(4) {
    border-top: 1px solid rgba(255,255,255,0.14);
  }
}

@media (max-width: 880px) {
  .values-strip {
    width: calc(100vw - 24px);
    margin: 14px 12px 0;
    border-radius: 22px;
    grid-template-columns: 1fr;
  }

  .value-item {
    padding: 22px 16px;
  }

  .value-item + .value-item::before {
    display: none;
  }

  .value-item + .value-item {
    border-top: 1px solid rgba(255,255,255,0.12);
  }
}

.section-visual picture {
  display: block;
  width: 100%;
  height: 100%;
}
.section-visual picture img {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 881px) {
  .section-title {
    display: flex;
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
  }
  .section-grid,
  .section-grid--firm,
  .section-grid--services,
  .section-grid--contact {
    grid-template-columns: minmax(340px, 390px) minmax(0, 1fr);
    align-items: start;
  }
  .section-visual,
  .mobile-priority {
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
    aspect-ratio: 4 / 5 !important;
    border-radius: 22px !important;
    overflow: hidden;
  }
  .section-visual picture,
  .section-visual img,
  .mobile-priority picture,
  .mobile-priority img {
    width: 100%;
    height: 100%;
  }
  .section-visual img,
  .mobile-priority img {
    object-fit: cover;
    object-position: center center;
  }
}

@media (min-width: 881px) {
  .section-grid,
  .section-grid--firm,
  .section-grid--services,
  .section-grid--contact {
    grid-template-columns: minmax(360px, 420px) minmax(0, 1fr) !important;
    align-items: stretch !important;
  }

  .section-visual,
  .mobile-priority {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 4 / 5 !important;
    overflow: hidden !important;
    align-self: stretch !important;
    border-radius: 22px !important;
  }

  .section-visual picture,
  .mobile-priority picture {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
  }

  .section-visual img,
  .mobile-priority img {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  .section-title {
    width: 100% !important;
  }
}

@media (max-width: 880px) {
  .section-visual,
  .mobile-priority {
    aspect-ratio: auto !important;
  }

  .section-visual picture,
  .mobile-priority picture {
    position: static !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
  }

  .section-visual img,
  .mobile-priority img {
    position: static !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1536 / 864 !important;
    object-fit: cover !important;
  }
}

.hero-section {
  margin: 10px 0 20px;
}
.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  min-height: 540px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,196,0,0.12), transparent 22%),
    linear-gradient(135deg, rgba(4,9,16,0.98), rgba(7,12,22,0.96));
  box-shadow: var(--shadow);
}
.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,8,16,0.92) 0%, rgba(3,8,16,0.82) 40%, rgba(3,8,16,0.45) 62%, rgba(3,8,16,0.18) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-content,
.hero-visual {
  position: relative;
  z-index: 2;
}
.hero-content {
  padding: 58px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
}
.hero-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.92rem;
}
.hero-content h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.hero-lead {
  margin: 22px 0 0;
  max-width: 560px;
  color: #d3dbe7;
  font-size: 1.18rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.2s ease;
  border: 1px solid transparent;
}
.hero-btn--primary {
  color: #10151d;
  background: linear-gradient(180deg, #ffd84d, #ffc400);
  box-shadow: 0 10px 26px rgba(255,196,0,0.22);
}
.hero-btn--primary:hover,
.hero-btn--primary:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.04);
}
.hero-btn--secondary {
  color: #fff;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.13);
}
.hero-btn--secondary:hover,
.hero-btn--secondary:focus-visible {
  background: rgba(255,255,255,0.1);
}
.hero-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.hero-values span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: #eef2f8;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.97rem;
}
.hero-visual {
  min-height: 100%;
}
.hero-visual picture,
.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-visual img {
  object-fit: cover;
  object-position: center center;
}
@media (min-width: 881px) {
  .hero-visual {
    aspect-ratio: auto !important;
  }
}
@media (max-width: 880px) {
  .hero-section {
    margin: 8px 0 14px;
  }
  .hero-shell {
    grid-template-columns: 1fr;
    min-height: auto;
    width: calc(100vw - 24px);
    margin: 0 12px;
    border-radius: 22px;
  }
  .hero-shell::before {
    background: linear-gradient(180deg, rgba(3,8,16,0.78) 0%, rgba(3,8,16,0.54) 26%, rgba(3,8,16,0.8) 65%, rgba(3,8,16,0.96) 100%);
  }
  .hero-content {
    order: 2;
    padding: 22px 18px 24px;
  }
  .hero-content h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .hero-lead {
    font-size: 1rem;
    margin-top: 16px;
  }
  .hero-actions {
    margin-top: 20px;
  }
  .hero-btn {
    width: 100%;
  }
  .hero-values {
    margin-top: 18px;
    gap: 8px;
  }
  .hero-values span {
    font-size: 0.9rem;
    min-height: 34px;
  }
  .hero-visual {
    order: 1;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .hero-visual picture,
  .hero-visual img {
    width: 100%;
    height: 100%;
  }
}

.hero-shell--bg {
  display: block !important;
  min-height: 560px;
  background:
    linear-gradient(90deg, rgba(2,7,14,0.90) 0%, rgba(2,7,14,0.84) 34%, rgba(2,7,14,0.58) 58%, rgba(2,7,14,0.28) 100%),
    url('assets/hero-bg.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero-shell--bg::before {
  display: none !important;
}

.hero-shell--bg .hero-content {
  position: relative;
  z-index: 2;
  min-height: 560px;
  max-width: 720px;
}

@media (max-width: 880px) {
  .hero-shell--bg {
    min-height: 520px;
    background:
      linear-gradient(180deg, rgba(2,7,14,0.32) 0%, rgba(2,7,14,0.56) 34%, rgba(2,7,14,0.88) 72%, rgba(2,7,14,0.96) 100%),
      url('assets/hero-bg.png');
    background-size: cover;
    background-position: 68% center;
  }

  .hero-shell--bg .hero-content {
    min-height: 520px;
    justify-content: flex-end;
    max-width: none;
  }
}

.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 9999 !important;
  width: min(95vw, var(--maxw)) !important;
  background: rgba(3, 8, 16, 0.94) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  box-shadow: 0 18px 34px rgba(0,0,0,0.38) !important;
}

body {
  padding-top: 112px !important;
}

html {
  scroll-padding-top: 128px !important;
}

.page-shell {
  margin-top: 0 !important;
}

@media (max-width: 880px) {
  .site-header {
    left: 0 !important;
    transform: none !important;
    width: 100% !important;
  }

  body {
    padding-top: 96px !important;
  }

  html {
    scroll-padding-top: 112px !important;
  }
}

body {
  background: #000000 !important;
}

.service-list {
  display: grid;
  gap: 18px;
  margin: 18px 0;
}

.service-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 0;
}

.service-item-copy strong {
  display: block;
  font-size: 1.12rem;
  margin-bottom: 6px;
}

.service-item-copy span {
  display: block;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 880px) {
  .service-item {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
  }

  .service-icon {
    width: 48px;
    height: 48px;
  }
}

.protected-contact {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: var(--accent) !important;
  font-weight: 800;
}

.protected-contact:hover,
.protected-contact:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.no-js-contact {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.bottom-grid {
  grid-template-columns: 1fr !important;
}

@media (min-width: 881px) {
  .bottom-grid .small-card {
    max-width: none;
  }
}

@media (min-width: 881px) {
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .contact-cards .info-card:nth-child(3) {
    grid-column: 1 / -1;
  }
}

.protected-contact {
  cursor: pointer;
  border-bottom: 1px dashed rgba(255, 196, 0, 0.55);
  text-decoration: none !important;
}

.protected-contact:not(.is-revealed)::after {
  content: "  •";
  opacity: 0.75;
}

.protected-contact.is-revealed {
  border-bottom-style: solid;
}

.bottom-grid .small-card p + p {
  margin-top: 14px;
}

.values-strip .value-icon {
  width: 52px !important;
  height: 52px !important;
  border-radius: 17px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 16px !important;
  color: var(--accent) !important;
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,0.28), transparent 28%),
    linear-gradient(180deg, rgba(255,196,0,0.24), rgba(255,196,0,0.07)) !important;
  border: 1px solid rgba(255,196,0,0.35) !important;
  box-shadow: 0 0 26px rgba(255,196,0,0.14), inset 0 1px 0 rgba(255,255,255,0.18) !important;
}

.values-strip .value-icon svg {
  width: 27px !important;
  height: 27px !important;
  fill: currentColor !important;
  stroke: none !important;
}

@media (max-width: 880px) {
  .values-strip .value-icon {
    width: 48px !important;
    height: 48px !important;
    border-radius: 16px !important;
    margin-bottom: 14px !important;
  }

  .values-strip .value-icon svg {
    width: 25px !important;
    height: 25px !important;
  }
}

.hero-shell--bg {
  background:
    linear-gradient(90deg, rgba(2,7,14,0.90) 0%, rgba(2,7,14,0.84) 34%, rgba(2,7,14,0.58) 58%, rgba(2,7,14,0.28) 100%),
    url('assets/hero-bg.png') !important;
  background-size: cover !important;
  background-position: center right !important;
  background-repeat: no-repeat !important;
}

@supports (background-image: image-set(url("assets/hero-bg.webp") type("image/webp"))) {
  .hero-shell--bg {
    background:
      linear-gradient(90deg, rgba(2,7,14,0.90) 0%, rgba(2,7,14,0.84) 34%, rgba(2,7,14,0.58) 58%, rgba(2,7,14,0.28) 100%),
      image-set(url("assets/hero-bg.webp") type("image/webp"), url("assets/hero-bg.png") type("image/png")) !important;
  }
}

.info-card,
.service-item,
.value-item,
.small-card {
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

@media (hover: hover) and (pointer: fine) {
  .info-card:hover,
  .service-item:hover,
  .value-item:hover,
  .small-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255,196,0,0.26);
    box-shadow: 0 18px 38px rgba(0,0,0,0.42), 0 0 26px rgba(255,196,0,0.07);
  }
}

@media (max-width: 880px) {
  .hero-shell--bg {
    background:
      linear-gradient(180deg, rgba(2,7,14,0.32) 0%, rgba(2,7,14,0.56) 34%, rgba(2,7,14,0.88) 72%, rgba(2,7,14,0.96) 100%),
      url('assets/hero-bg.png') !important;
    background-size: cover !important;
    background-position: 68% center !important;
  }

  @supports (background-image: image-set(url("assets/hero-bg.webp") type("image/webp"))) {
    .hero-shell--bg {
      background:
        linear-gradient(180deg, rgba(2,7,14,0.32) 0%, rgba(2,7,14,0.56) 34%, rgba(2,7,14,0.88) 72%, rgba(2,7,14,0.96) 100%),
        image-set(url("assets/hero-bg.webp") type("image/webp"), url("assets/hero-bg.png") type("image/png")) !important;
    }
  }
}

.hero-shell--bg {
  background-position: 82% center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

@supports (background-image: image-set(url("assets/hero-bg.webp") type("image/webp"))) {
  .hero-shell--bg {
    background:
      linear-gradient(90deg, rgba(2,7,14,0.90) 0%, rgba(2,7,14,0.84) 34%, rgba(2,7,14,0.58) 58%, rgba(2,7,14,0.28) 100%),
      image-set(url("assets/hero-bg.webp") type("image/webp"), url("assets/hero-bg.png") type("image/png")) !important;
    background-position: 82% center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
  }
}

@media (max-width: 880px) {
  .hero-shell--bg {
    background-position: 74% center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
  }

  @supports (background-image: image-set(url("assets/hero-bg.webp") type("image/webp"))) {
    .hero-shell--bg {
      background:
        linear-gradient(180deg, rgba(2,7,14,0.32) 0%, rgba(2,7,14,0.56) 34%, rgba(2,7,14,0.88) 72%, rgba(2,7,14,0.96) 100%),
        image-set(url("assets/hero-bg.webp") type("image/webp"), url("assets/hero-bg.png") type("image/png")) !important;
      background-position: 74% center !important;
      background-size: cover !important;
      background-repeat: no-repeat !important;
    }
  }
}

@media (min-width: 881px) {
  #o-firmie .section-visual img,
  #o-firmie .mobile-priority img {
    object-position: center 12% !important;
  }

  #kontakt .section-visual img,
  #kontakt .mobile-priority img {
    object-position: center 10% !important;
  }
}

.contact-layout {
  align-content: start;
}

.no-js-contact.no-card {
  margin: 0 0 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
}

@media (min-width: 881px) {
  .content-section {
    margin-top: 18px;
  }

  .content-section .section-grid,
  .content-section .section-grid--firm,
  .content-section .section-grid--services,
  .content-section .section-grid--contact {
    position: relative !important;
    display: block !important;
    min-height: clamp(500px, 42vw, 620px);
    padding: 28px !important;
    border: 1px solid var(--stroke) !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    background: #050912 !important;
    box-shadow: var(--shadow) !important;
    isolation: isolate;
  }

  #kontakt .section-grid,
  #kontakt .section-grid--contact {
    min-height: clamp(520px, 44vw, 650px);
  }

  .content-section .section-grid::before,
  .content-section .section-grid--firm::before,
  .content-section .section-grid--services::before,
  .content-section .section-grid--contact::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      90deg,
      rgba(2,7,14,0.03) 0%,
      rgba(2,7,14,0.08) 34%,
      rgba(2,7,14,0.26) 50%,
      rgba(2,7,14,0.62) 66%,
      rgba(2,7,14,0.88) 80%,
      rgba(2,7,14,0.94) 100%
    );
  }

  .content-section .section-visual,
  .content-section .mobile-priority {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    aspect-ratio: auto !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    z-index: 0;
    overflow: hidden !important;
  }

  .content-section .section-visual picture,
  .content-section .mobile-priority picture,
  .content-section .section-visual img,
  .content-section .mobile-priority img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
  }

  .content-section .section-visual img,
  .content-section .mobile-priority img {
    position: absolute !important;
    inset: 0 !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
    object-position: 35% center !important;
  }

  #kontakt .section-visual img,
  #kontakt .mobile-priority img {
    object-position: 32% center !important;
  }

  .content-section .section-copy,
  .content-section .contact-layout {
    position: relative;
    z-index: 2;
    margin-left: auto;
    border-radius: 24px !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
    background: linear-gradient(180deg, rgba(7,12,20,0.84), rgba(5,9,16,0.92)) !important;
    box-shadow: 0 18px 40px rgba(0,0,0,0.42) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .content-section .section-copy {
    width: min(48%, 640px);
    padding: 30px 30px 26px !important;
  }

  .content-section .contact-layout {
    width: min(52%, 720px);
    padding: 22px;
  }

  .content-section .contact-cards {
    margin: 0;
  }

  .content-section .info-card,
  .content-section .service-item {
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  }
}

.page-shell {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.site-header {
  width: 100% !important;
  max-width: none !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-radius: 0 0 22px 22px !important;
}

main {
  width: 100% !important;
  max-width: none !important;
  padding-left: 26px !important;
  padding-right: 26px !important;
}

.site-footer {
  width: 100% !important;
  border-top: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 880px) {
  main {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .site-header {
    border-radius: 0 0 20px 20px !important;
  }
}

html {
  scroll-padding-top: 154px !important;
}

.content-section,
.values-strip,
#prywatnosc {
  scroll-margin-top: 154px !important;
}

@media (max-width: 880px) {
  html {
    scroll-padding-top: 132px !important;
  }

  .content-section,
  .values-strip,
  #prywatnosc {
    scroll-margin-top: 132px !important;
  }
}

html {
  scroll-padding-top: 0 !important;
}

.content-section,
.values-strip,
#prywatnosc {
  scroll-margin-top: 0 !important;
}

@media (min-width: 881px) {
  #o-firmie .section-grid,
  #uslugi .section-grid,
  #kontakt .section-grid {
    aspect-ratio: 1672 / 941 !important;
    min-height: auto !important;
    height: auto !important;
    max-height: none !important;
  }

  #o-firmie .section-visual,
  #uslugi .section-visual,
  #kontakt .section-visual,
  #o-firmie .mobile-priority,
  #uslugi .mobile-priority,
  #kontakt .mobile-priority {
    inset: 0 !important;
    height: 100% !important;
    min-height: 100% !important;
  }

  #o-firmie .section-visual img,
  #uslugi .section-visual img,
  #kontakt .section-visual img,
  #o-firmie .mobile-priority img,
  #uslugi .mobile-priority img,
  #kontakt .mobile-priority img {
    object-fit: cover !important;
    object-position: center center !important;
  }

  #o-firmie .section-visual img,
  #o-firmie .mobile-priority img {
    object-position: 46% center !important;
  }

  #uslugi .section-visual img,
  #uslugi .mobile-priority img {
    object-position: 48% center !important;
  }

  #kontakt .section-visual img,
  #kontakt .mobile-priority img {
    object-position: 47% center !important;
  }
}

@media (min-width: 1500px) {
  #o-firmie .section-grid,
  #uslugi .section-grid,
  #kontakt .section-grid {
    aspect-ratio: 21 / 9 !important;
  }
}

@media (max-width: 880px) {
  #o-firmie .section-grid,
  #uslugi .section-grid,
  #kontakt .section-grid {
    aspect-ratio: auto !important;
  }
}

@media (min-width: 881px) {
  #o-firmie .section-grid,
  #o-firmie .section-grid--firm,
  #uslugi .section-grid,
  #uslugi .section-grid--services,
  #kontakt .section-grid,
  #kontakt .section-grid--contact {
    width: 100% !important;
    aspect-ratio: 1672 / 941 !important;
    min-height: auto !important;
    height: auto !important;
    max-height: none !important;
  }

  #o-firmie .section-visual,
  #uslugi .section-visual,
  #kontakt .section-visual,
  #o-firmie .mobile-priority,
  #uslugi .mobile-priority,
  #kontakt .mobile-priority {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    aspect-ratio: 1672 / 941 !important;
  }

  #o-firmie .section-visual picture,
  #uslugi .section-visual picture,
  #kontakt .section-visual picture,
  #o-firmie .mobile-priority picture,
  #uslugi .mobile-priority picture,
  #kontakt .mobile-priority picture,
  #o-firmie .section-visual img,
  #uslugi .section-visual img,
  #kontakt .section-visual img,
  #o-firmie .mobile-priority img,
  #uslugi .mobile-priority img,
  #kontakt .mobile-priority img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 1672 / 941 !important;
  }

  #o-firmie .section-visual img,
  #uslugi .section-visual img,
  #kontakt .section-visual img,
  #o-firmie .mobile-priority img,
  #uslugi .mobile-priority img,
  #kontakt .mobile-priority img {
    object-fit: cover !important;
    object-position: center center !important;
  }
}

@media (min-width: 1500px) {
  #o-firmie .section-grid,
  #o-firmie .section-grid--firm,
  #uslugi .section-grid,
  #uslugi .section-grid--services,
  #kontakt .section-grid,
  #kontakt .section-grid--contact {
    aspect-ratio: 1672 / 941 !important;
  }
}

@media (max-width: 880px) {
  #o-firmie .section-grid,
  #uslugi .section-grid,
  #kontakt .section-grid {
    aspect-ratio: auto !important;
  }
}

@media (min-width: 881px) {
  .hero-section {
    width: 100%;
  }

  .hero-shell--bg {
    width: 100%;
    aspect-ratio: 1672 / 941 !important;
    min-height: 0 !important;
    height: auto !important;
    background-size: cover !important;
    background-position: center center !important;
  }

  .hero-shell--bg .hero-content {
    min-height: 100% !important;
    height: 100% !important;
    padding: clamp(34px, 4vw, 58px) clamp(28px, 4vw, 52px) !important;
    max-width: min(620px, 48%) !important;
    justify-content: center !important;
  }

  .hero-content h1 {
    max-width: 8.8ch;
    line-height: 0.98;
  }

  .hero-lead {
    max-width: 34rem;
  }
}

@media (max-width: 880px) {
  .hero-shell--bg {
    aspect-ratio: auto !important;
    min-height: 520px !important;
  }

  .hero-content h1 {
    max-width: 9.5ch;
  }
}

@media (min-width: 881px) {
  .hero-shell--bg .hero-content {
    width: 680px !important;
    min-width: 680px !important;
    max-width: 680px !important;
    flex: 0 0 680px !important;
    box-sizing: border-box !important;
  }

  .hero-title,
  .hero-content h1 {
    width: 100% !important;
    max-width: none !important;
    white-space: normal !important;
    font-size: clamp(2.9rem, 4.35vw, 4.55rem) !important;
    line-height: 0.98 !important;
  }

  .hero-title span {
    display: block !important;
    white-space: nowrap !important;
  }

  .hero-lead {
    width: 100% !important;
    max-width: 560px !important;
  }
}

@media (max-width: 880px) {
  .hero-title,
  .hero-content h1 {
    max-width: none !important;
  }

  .hero-title span {
    display: block !important;
    white-space: normal !important;
  }
}

.main-nav a {
  text-transform: uppercase !important;
}

@media (min-width: 881px) {
  .hero-shell--bg {
    aspect-ratio: 16 / 9 !important;
    min-height: 0 !important;
    height: auto !important;
  }

  .hero-shell--bg .hero-content {
    min-height: 100% !important;
    height: 100% !important;
  }
}

@media (min-width: 881px) {
  .hero-shell--bg {
    aspect-ratio: 16 / 8 !important;
    min-height: 0 !important;
    height: auto !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }

  .hero-shell--bg .hero-content {
    min-height: 100% !important;
    height: 100% !important;
  }
}

@media (min-width: 881px) {
  .hero-shell--bg {
    aspect-ratio: 16 / 7 !important;
    min-height: 0 !important;
    height: auto !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }

  .hero-shell--bg .hero-content {
    min-height: 100% !important;
    height: 100% !important;
  }
}

@media (min-width: 881px) {
  #o-firmie .section-grid,
  #o-firmie .section-grid--firm,
  #uslugi .section-grid,
  #uslugi .section-grid--services,
  #kontakt .section-grid,
  #kontakt .section-grid--contact {
    aspect-ratio: 16 / 7 !important;
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
  }

  #o-firmie .section-visual,
  #o-firmie .mobile-priority,
  #uslugi .section-visual,
  #uslugi .mobile-priority,
  #kontakt .section-visual,
  #kontakt .mobile-priority {
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
  }

  #o-firmie .section-visual picture,
  #o-firmie .mobile-priority picture,
  #uslugi .section-visual picture,
  #uslugi .mobile-priority picture,
  #kontakt .section-visual picture,
  #kontakt .mobile-priority picture,
  #o-firmie .section-visual img,
  #o-firmie .mobile-priority img,
  #uslugi .section-visual img,
  #uslugi .mobile-priority img,
  #kontakt .section-visual img,
  #kontakt .mobile-priority img {
    width: 100% !important;
    height: 100% !important;
  }

  #o-firmie .section-visual img,
  #o-firmie .mobile-priority img,
  #uslugi .section-visual img,
  #uslugi .mobile-priority img,
  #kontakt .section-visual img,
  #kontakt .mobile-priority img {
    object-fit: cover !important;
    object-position: center center !important;
  }
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: Inter, Arial, Helvetica, sans-serif !important;
  font-kerning: normal;
}

*, *::before, *::after {
  box-sizing: border-box;
}

img {
  image-rendering: auto;
}

@media (min-width: 881px) {
  :root {
    --stable-hero-ratio: 16 / 7;
    --stable-section-ratio: 16 / 8;
    --stable-hero-content-width: 680px;
    --stable-copy-width: 620px;
    --stable-contact-width: 700px;
  }

  .page-shell {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  .site-header {
    width: 100% !important;
    max-width: none !important;
    padding: 24px 28px 20px !important;
    gap: 22px !important;
  }

  .main-nav {
    gap: 14px !important;
  }

  .main-nav a {
    padding: 10px 15px !important;
    font-size: 0.96rem !important;
    line-height: 1 !important;
    letter-spacing: 0.05em !important;
    white-space: nowrap !important;
  }

  main {
    width: 100% !important;
    max-width: none !important;
    padding: 12px 24px 28px !important;
  }

  .content-section {
    margin-top: 18px !important;
  }

  .section-title {
    display: inline-flex !important;
    min-width: 0 !important;
    max-width: 100% !important;
    padding: 18px 32px !important;
    margin: 0 0 18px !important;
    font-size: clamp(2rem, 2.9vw, 3.05rem) !important;
    line-height: 1.04 !important;
  }

  .hero-section {
    width: 100% !important;
  }

  .hero-shell--bg {
    width: 100% !important;
    aspect-ratio: var(--stable-hero-ratio) !important;
    min-height: 0 !important;
    height: auto !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    overflow: hidden !important;
  }

  .hero-shell--bg .hero-content {
    width: var(--stable-hero-content-width) !important;
    min-width: var(--stable-hero-content-width) !important;
    max-width: var(--stable-hero-content-width) !important;
    flex: 0 0 var(--stable-hero-content-width) !important;
    min-height: 100% !important;
    height: 100% !important;
    padding: 38px 42px !important;
    justify-content: center !important;
  }

  .hero-title,
  .hero-content h1 {
    width: 100% !important;
    max-width: none !important;
    font-size: clamp(2.95rem, 4.05vw, 4.35rem) !important;
    line-height: 0.98 !important;
  }

  .hero-title span {
    display: block !important;
    white-space: nowrap !important;
  }

  .hero-lead {
    width: 100% !important;
    max-width: 520px !important;
    font-size: 1.06rem !important;
    line-height: 1.58 !important;
  }

  #o-firmie .section-grid,
  #o-firmie .section-grid--firm,
  #uslugi .section-grid,
  #uslugi .section-grid--services,
  #kontakt .section-grid,
  #kontakt .section-grid--contact {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    aspect-ratio: var(--stable-section-ratio) !important;
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    padding: 26px !important;
    border: 1px solid var(--stroke) !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    isolation: isolate;
    background: #050912 !important;
    box-shadow: var(--shadow) !important;
  }

  #o-firmie .section-grid::before,
  #o-firmie .section-grid--firm::before,
  #uslugi .section-grid::before,
  #uslugi .section-grid--services::before,
  #kontakt .section-grid::before,
  #kontakt .section-grid--contact::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      90deg,
      rgba(2,7,14,0.04) 0%,
      rgba(2,7,14,0.10) 34%,
      rgba(2,7,14,0.28) 50%,
      rgba(2,7,14,0.64) 67%,
      rgba(2,7,14,0.88) 82%,
      rgba(2,7,14,0.94) 100%
    );
  }

  #o-firmie .section-visual,
  #o-firmie .mobile-priority,
  #uslugi .section-visual,
  #uslugi .mobile-priority,
  #kontakt .section-visual,
  #kontakt .mobile-priority {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: hidden !important;
    z-index: 0 !important;
  }

  #o-firmie .section-visual picture,
  #o-firmie .mobile-priority picture,
  #uslugi .section-visual picture,
  #uslugi .mobile-priority picture,
  #kontakt .section-visual picture,
  #kontakt .mobile-priority picture,
  #o-firmie .section-visual img,
  #o-firmie .mobile-priority img,
  #uslugi .section-visual img,
  #uslugi .mobile-priority img,
  #kontakt .section-visual img,
  #kontakt .mobile-priority img {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
  }

  #o-firmie .section-visual img,
  #o-firmie .mobile-priority img,
  #uslugi .section-visual img,
  #uslugi .mobile-priority img,
  #kontakt .section-visual img,
  #kontakt .mobile-priority img {
    aspect-ratio: auto !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  #o-firmie .section-copy,
  #uslugi .section-copy,
  #kontakt .contact-layout {
    position: relative !important;
    z-index: 2 !important;
    margin-left: auto !important;
    border-radius: 24px !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
    background: linear-gradient(180deg, rgba(7,12,20,0.84), rgba(5,9,16,0.92)) !important;
    box-shadow: 0 18px 40px rgba(0,0,0,0.42) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
  }

  #o-firmie .section-copy,
  #uslugi .section-copy {
    width: var(--stable-copy-width) !important;
    min-width: var(--stable-copy-width) !important;
    max-width: var(--stable-copy-width) !important;
    padding: 28px 28px 24px !important;
    font-size: 1.04rem !important;
    line-height: 1.58 !important;
  }

  #kontakt .contact-layout {
    width: var(--stable-contact-width) !important;
    min-width: var(--stable-contact-width) !important;
    max-width: var(--stable-contact-width) !important;
    padding: 20px !important;
    display: grid !important;
    gap: 16px !important;
  }

  .service-item,
  .info-card,
  .small-card {
    min-height: 0 !important;
  }

  .info-card {
    padding: 20px !important;
  }

  .info-card h3,
  .service-item h3,
  .small-card h3 {
    font-size: 1.04rem !important;
    line-height: 1.25 !important;
  }

  .info-card p,
  .service-item p,
  .small-card p,
  .section-copy p,
  .section-copy li,
  .values-list li {
    font-size: 0.995rem !important;
    line-height: 1.58 !important;
  }

  .bottom-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }

  .small-card {
    padding: 22px !important;
  }

  .site-footer {
    padding: 18px 24px 24px !important;
  }
}

@media (max-width: 880px) {
  .page-shell {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .site-header {
    padding: 18px 16px 16px !important;
  }

  .logo {
    line-height: 1 !important;
  }

  .main-nav a {
    font-size: 0.98rem !important;
    line-height: 1.12 !important;
    white-space: nowrap !important;
  }

  main {
    padding: 0 !important;
  }

  .hero-shell--bg {
    min-height: 520px !important;
    background-position: center center !important;
  }

  .hero-content {
    width: 100% !important;
    max-width: none !important;
  }

  .hero-title,
  .hero-content h1 {
    width: 100% !important;
    max-width: 9.5ch !important;
    font-size: clamp(2.3rem, 9vw, 3.2rem) !important;
    line-height: 0.98 !important;
  }

  .hero-title span {
    display: block !important;
  }

  .section-title {
    width: calc(100% - 24px) !important;
    margin: 0 12px 14px !important;
    padding: 16px 22px !important;
    font-size: clamp(1.7rem, 7vw, 2.3rem) !important;
    line-height: 1.06 !important;
  }

  .section-visual,
  .mobile-priority {
    width: calc(100% - 24px) !important;
    margin-left: 12px !important;
    margin-right: 12px !important;
    aspect-ratio: 16 / 9 !important;
    border-radius: 22px !important;
    overflow: hidden !important;
  }

  .section-visual img,
  .mobile-priority img {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 16 / 9 !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  .section-copy,
  .contact-layout {
    width: calc(100% - 24px) !important;
    margin-left: 12px !important;
    margin-right: 12px !important;
    padding: 22px 20px !important;
    font-size: 1rem !important;
    line-height: 1.58 !important;
  }

  .contact-cards,
  .bottom-grid {
    gap: 14px !important;
  }

  .info-card,
  .small-card {
    padding: 18px !important;
  }
}

@media (min-width: 881px) {
  :root {
    --stable-copy-width: 620px;
    --stable-contact-width: 620px;
  }

  #o-firmie .section-copy,
  #uslugi .section-copy,
  #kontakt .contact-layout {
    width: 620px !important;
    min-width: 620px !important;
    max-width: 620px !important;
  }

  #kontakt .contact-layout {
    padding: 20px !important;
  }

  #kontakt .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  #kontakt .contact-cards .info-card:nth-child(3) {
    grid-column: 1 / -1 !important;
  }

  #prywatnosc.bottom-grid,
  .bottom-grid#prywatnosc {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  #prywatnosc .small-card {
    width: 100% !important;
    max-width: none !important;
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 880px) {
  #kontakt .contact-layout,
  #o-firmie .section-copy,
  #uslugi .section-copy {
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
    min-width: 0 !important;
  }

  #prywatnosc.bottom-grid,
  .bottom-grid#prywatnosc {
    width: calc(100% - 24px) !important;
    margin-left: 12px !important;
    margin-right: 12px !important;
    grid-template-columns: 1fr !important;
  }

  #prywatnosc .small-card {
    width: 100% !important;
    max-width: none !important;
  }
}

@media (min-width: 881px) {
  :root {
    --stable-section-ratio: 16 / 8;
  }

  #o-firmie .section-grid,
  #o-firmie .section-grid--firm,
  #uslugi .section-grid,
  #uslugi .section-grid--services,
  #kontakt .section-grid,
  #kontakt .section-grid--contact {
    aspect-ratio: 16 / 8 !important;
  }

  #o-firmie .section-visual img,
  #o-firmie .mobile-priority img,
  #uslugi .section-visual img,
  #uslugi .mobile-priority img,
  #kontakt .section-visual img,
  #kontakt .mobile-priority img {
    object-position: center center !important;
  }
}

@media (min-width: 881px) {
  .main-nav a {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
}

@media (max-width: 880px) {
  .main-nav a {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
}

.main-nav a {
  border-radius: 12px !important;
}

@media (max-width: 880px) {
  .main-nav a {
    border-radius: 12px !important;
  }
}

:root {
  --font-main: "Manrope", Arial, Helvetica, sans-serif;
}

html,
body,
button,
input,
textarea,
select {
  font-family: var(--font-main) !important;
}

body {
  font-family: var(--font-main) !important;
  font-optical-sizing: auto;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.main-nav a,
.hero-kicker,
.hero-title,
.hero-content h1,
.section-title,
.info-card h3,
.service-item-copy strong,
.value-item strong,
.small-card h3 {
  font-family: var(--font-main) !important;
}

:root {
  --font-main: "Oxanium", Arial, Helvetica, sans-serif;
}

html,
body,
button,
input,
textarea,
select {
  font-family: var(--font-main) !important;
}

body {
  font-family: var(--font-main) !important;
}

.main-nav a,
.hero-kicker,
.hero-title,
.hero-content h1,
.section-title,
.info-card h3,
.service-item-copy strong,
.value-item strong,
.small-card h3 {
  font-family: var(--font-main) !important;
}

.section-title {
  justify-content: flex-start !important;
  text-align: left !important;
  text-transform: uppercase !important;
  letter-spacing: 2.5px !important;
}

@media (max-width: 880px) {
  .section-title {
    justify-content: flex-start !important;
    text-align: left !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
  }

  .section-title::after {
    left: 36px !important;
    transform: none !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  .info-card:hover,
  .service-item:hover,
  .value-item:hover,
  .small-card:hover {
    transform: none !important;
    border-color: inherit !important;
    box-shadow: none !important;
  }
}

.info-card,
.service-item,
.value-item,
.small-card {
  transform: none !important;
}

.info-card,
.service-item,
.value-item,
.small-card {
  transition:
    border-color .22s ease,
    background .22s ease,
    box-shadow .22s ease !important;
}

@media (hover: hover) and (pointer: fine) {
  .content-section .service-item:hover,
  .content-section .info-card:hover,
  .values-strip .value-item:hover,
  #prywatnosc .small-card:hover,
  .bottom-grid .small-card:hover {
    transform: none !important;
    box-shadow: none !important;
  }

  .content-section .service-item:hover {
    border-color: rgba(255,255,255,0.08) !important;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)) !important;
  }

  .content-section .info-card:hover {
    border-color: rgba(255,196,0,0.16) !important;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)) !important;
  }

  .values-strip .value-item:hover {
    border-color: transparent !important;
    background: transparent !important;
  }

  #prywatnosc .small-card:hover,
  .bottom-grid .small-card:hover {
    border-color: var(--stroke) !important;
    background: var(--panel) !important;
  }
}

.content-section .service-item,
.content-section .info-card,
.values-strip .value-item,
#prywatnosc .small-card,
.bottom-grid .small-card {
  transition: none !important;
}

.section-title {
  justify-content: flex-end !important;
  text-align: right !important;
}

.section-title::after {
  left: auto !important;
  right: 36px !important;
  transform: none !important;
}

@media (max-width: 880px) {
  .section-title {
    justify-content: flex-end !important;
    text-align: right !important;
  }

  .section-title::after {
    left: auto !important;
    right: 36px !important;
    transform: none !important;
  }
}

.section-title {
  padding-right: 64px !important;
}

.section-title::after {
  right: 64px !important;
}

@media (max-width: 880px) {
  .section-title {
    padding-right: 44px !important;
  }

  .section-title::after {
    right: 44px !important;
  }
}

@media (min-width: 881px) {
  #kontakt .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  #kontakt .contact-cards .info-card:nth-child(3),
  #kontakt .contact-cards .info-card:nth-child(4) {
    grid-column: auto !important;
  }
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 204, 0, 0.12), transparent 34%),
    linear-gradient(135deg, #050505 0%, #111 48%, #050505 100%);
  color: #fff;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-preloader__inner {
  width: min(360px, 86vw);
  text-align: center;
}

.site-preloader__logo {
  width: min(220px, 70vw);
  height: auto;
  margin: 0 auto 28px;
  display: block;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.45));
}

.site-preloader__bar {
  width: 100%;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.site-preloader__bar-fill {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #d6a600, #ffd84d, #fff1a3);
  box-shadow: 0 0 22px rgba(255, 216, 77, 0.42);
  transition: width 0.22s ease;
}

.site-preloader__percent {
  margin-top: 16px;
  font-size: clamp(1.65rem, 5vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.site-preloader__text {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

@media (prefers-reduced-motion: reduce) {
  .site-preloader,
  .site-preloader__bar-fill {
    transition: none;
  }
}

.fade-on-scroll {
  opacity: 0.30;
  transition: opacity 0.65s ease;
  will-change: opacity;
}

.fade-on-scroll.is-visible {
  opacity: 1;
}

.no-js .fade-on-scroll {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .fade-on-scroll {
    opacity: 1;
    transition: none;
  }
}

.hero-fade-start-visible {
  opacity: 1;
}

.hero-section.hero-fade-start-visible {
  opacity: 1;
  transition: opacity 0.65s ease;
  will-change: opacity;
}

body {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.035), transparent 34rem),
    linear-gradient(180deg, #181b20 0%, #111318 100%);
}

.site-header,
.section-card,
.small-card,
.contact-card,
.service-item,
.value-item,
.privacy-card,
.company-data-card,
.map-card {
  background-color: rgba(8, 9, 12, 0.92);
  border-color: rgba(255, 255, 255, 0.08);
}

.content-section,
.values-strip,
.bottom-grid {
  background-color: transparent;
}

.section-visual,
.visual-frame,
.section-visual picture {
  background-color: rgba(8, 9, 12, 0.72);
}

.site-header {
  background-color: rgba(7, 8, 10, 0.88);
  backdrop-filter: blur(18px);
}

.mobile-menu,
.nav-panel {
  background-color: rgba(8, 9, 12, 0.96);
}

:root {
  --smg-header-outer-height: 86px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw !important;
  max-width: none !important;
  margin: 0 !important;
  border-radius: 0;
  z-index: 1000;
}

.page-shell {
  width: 95vw !important;
  max-width: none !important;
  margin: calc(var(--smg-header-outer-height) + 1vw) auto 0 !important;
}

@media (max-width: 768px) {
  :root {
    --smg-header-outer-height: 74px;
  }

  .page-shell {
    width: 95vw !important;
    margin-top: calc(var(--smg-header-outer-height) + 1vw) !important;
  }
}

html {
  background: #1f2329 !important;
}

body {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 34rem),
    linear-gradient(180deg, #242830 0%, #171a20 100%) !important;
  background-color: #1f2329 !important;
}

.page-shell {
  width: 95vw !important;
  max-width: 95vw !important;
  margin: calc(var(--smg-header-outer-height, 86px) + 1vw) auto 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

main,
#top {
  background: transparent !important;
  background-color: transparent !important;
}

.content-section,
.values-strip,
.bottom-grid,
.site-footer {
  background: transparent !important;
  background-color: transparent !important;
}

.site-header {
  width: 100vw !important;
  max-width: none !important;
}

@media (max-width: 768px) {
  .page-shell {
    width: 95vw !important;
    max-width: 95vw !important;
    margin-top: calc(var(--smg-header-outer-height, 74px) + 1vw) !important;
  }
}

:root {
  --smg-header-outer-height: 70px;
  --smg-header-gap: 10px;
}

.page-shell {
  width: 95vw !important;
  max-width: 95vw !important;
  margin: calc(var(--smg-header-outer-height) + var(--smg-header-gap)) auto 0 !important;
  background: transparent !important;
  background-color: transparent !important;
}

.hero-section {
  margin-top: 0 !important;
}

@media (max-width: 768px) {
  :root {
    --smg-header-outer-height: 64px;
    --smg-header-gap: 8px;
  }

  .page-shell {
    width: 95vw !important;
    max-width: 95vw !important;
    margin-top: calc(var(--smg-header-outer-height) + var(--smg-header-gap)) !important;
  }
}

:root {
  --smg-header-outer-height: 70px;
  --smg-header-gap: 6px;
}

.page-shell {
  width: 95vw !important;
  max-width: 95vw !important;
  margin: calc(var(--smg-header-outer-height) + var(--smg-header-gap)) auto 0 !important;
  padding-top: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
}

main,
#top {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.hero-section,
main > .hero-section,
#top > .hero-section,
.page-shell .hero-section,
.page-shell main > section:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.hero-section:first-child,
.content-section:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

@media (max-width: 768px) {
  :root {
    --smg-header-outer-height: 64px;
    --smg-header-gap: 6px;
  }

  .page-shell {
    width: 95vw !important;
    max-width: 95vw !important;
    margin-top: calc(var(--smg-header-outer-height) + var(--smg-header-gap)) !important;
    padding-top: 0 !important;
  }

  main,
  #top,
  .hero-section,
  main > .hero-section,
  #top > .hero-section,
  .page-shell .hero-section,
  .page-shell main > section:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}

:root {
  --smg-header-outer-height: 120px;
  --smg-header-gap: 20px;
}

.site-header {
  height: 120px !important;
  min-height: 120px !important;
  max-height: 120px !important;
  width: 100vw !important;
  max-width: none !important;
  margin: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
}

.site-header img,
.site-logo img,
.logo img,
.brand img,
.header-logo img {
  height: 100px !important;
  max-height: 100px !important;
  width: auto !important;
  object-fit: contain !important;
}

.page-shell {
  width: 95vw !important;
  max-width: 95vw !important;
  margin: 20px auto 0 !important;
  padding: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}

main,
#top {
  margin-top: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
}

.hero-section,
main > .hero-section,
#top > .hero-section,
.page-shell .hero-section,
.page-shell main > section:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

@media (max-width: 768px) {
  :root {
    --smg-header-outer-height: 120px;
    --smg-header-gap: 20px;
  }

  .site-header {
    height: 120px !important;
    min-height: 120px !important;
    max-height: 120px !important;
  }

  .site-header img,
  .site-logo img,
  .logo img,
  .brand img,
  .header-logo img {
    height: 100px !important;
    max-height: 100px !important;
    width: auto !important;
  }

  .page-shell {
    width: 95vw !important;
    max-width: 95vw !important;
    margin: 20px auto 0 !important;
    padding: 0 !important;
  }

  main,
  #top,
  .hero-section,
  main > .hero-section,
  #top > .hero-section,
  .page-shell .hero-section,
  .page-shell main > section:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}

.page-shell {
  width: 90vw !important;
  max-width: 90vw !important;
  margin: 40px auto 0 !important;
  padding: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-sizing: border-box !important;
}

@media (max-width: 768px) {
  .page-shell {
    width: 90vw !important;
    max-width: 90vw !important;
    margin: 40px auto 0 !important;
    padding: 0 !important;
  }
}

.site-header {
  width: 100vw !important;
  max-width: 100vw !important;
  padding-left: 5vw !important;
  padding-right: 5vw !important;
  box-sizing: border-box !important;
  overflow: visible !important;
}

.site-header > *,
.header-inner,
.navbar,
.site-nav,
.header-content {
  box-sizing: border-box !important;
}

@media (max-width: 768px) {
  .site-header {
    padding-left: 5vw !important;
    padding-right: 5vw !important;
  }
}

.section-title {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  max-width: 100% !important;
  padding: 10px 24px !important;
  background: rgba(255, 255, 255, 0.035) !important;
  background-color: rgba(255, 255, 255, 0.035) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  outline: none !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

.section-title::before,
.section-title::after {
  display: none !important;
  content: none !important;
}

@media (max-width: 768px) {
  .section-title {
    padding: 9px 20px !important;
    background: rgba(255, 255, 255, 0.035) !important;
    background-color: rgba(255, 255, 255, 0.035) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 999px !important;
    box-shadow: none !important;
  }

  .section-title::before,
  .section-title::after {
    display: none !important;
    content: none !important;
  }
}

.section-title {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  width: fit-content !important;
  max-width: min(100%, 32rem) !important;
  margin-left: auto !important;
  margin-right: 0 !important;
  text-align: left !important;
  padding: 12px 22px 11px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  background-color: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  box-shadow: none !important;
  outline: none !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

.section-title::before {
  display: none !important;
  content: none !important;
}

.section-title::after {
  content: '' !important;
  display: block !important;
  width: 58px !important;
  height: 2px !important;
  margin-top: 9px !important;
  background: #f5c542 !important;
  border-radius: 999px !important;
}

@media (max-width: 768px) {
  .section-title {
    max-width: min(100%, 24rem) !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    padding: 10px 18px 10px !important;
    border-radius: 14px !important;
  }

  .section-title::after {
    width: 50px !important;
    margin-top: 8px !important;
  }
}

.section-title {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  width: fit-content !important;
  max-width: min(100%, 34rem) !important;
  margin-left: auto !important;
  margin-right: 0 !important;
  text-align: left !important;
  padding: 18px 32px 16px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  background-color: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 14px !important;
  box-shadow: none !important;
  outline: none !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

.section-title::before,
.section-title::after {
  display: none !important;
  content: none !important;
}

.section-title > span {
  display: inline-block !important;
  max-width: 100% !important;
}

.section-title > span::after {
  content: '' !important;
  display: block !important;
  width: 100% !important;
  height: 2px !important;
  margin-top: 9px !important;
  background: #f5c542 !important;
  border-radius: 999px !important;
}

@media (max-width: 768px) {
  .section-title {
    max-width: min(100%, 24rem) !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    padding: 14px 26px 13px !important;
    border-radius: 12px !important;
  }

  .section-title > span::after {
    margin-top: 8px !important;
  }
}

.values-strip {
  margin-top: clamp(56px, 6vw, 96px) !important;
  margin-bottom: clamp(56px, 6vw, 96px) !important;
}

@media (max-width: 768px) {
  .values-strip {
    margin-top: clamp(44px, 10vw, 72px) !important;
    margin-bottom: clamp(44px, 10vw, 72px) !important;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 96px !important;
    min-height: 96px !important;
    max-height: 96px !important;
    padding-left: 5vw !important;
    padding-right: 5vw !important;
    align-items: center !important;
  }

  .site-header img,
  .site-logo img,
  .logo img,
  .brand img,
  .header-logo img {
    height: 78px !important;
    max-height: 78px !important;
    width: auto !important;
  }

  .logo {
    align-self: center !important;
  }

  .hamburger {
    width: 48px !important;
    height: 48px !important;
    margin-left: auto !important;
  }

  .main-nav {
    top: calc(100% + 8px) !important;
    left: 5vw !important;
    right: 5vw !important;
    border-radius: 18px !important;
  }

  .page-shell {
    width: 92vw !important;
    max-width: 92vw !important;
    margin: 32px auto 0 !important;
    padding: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
  }

  .hero-section {
    margin: 0 0 14px !important;
    padding-top: 0 !important;
  }

  .hero-shell,
  .hero-shell--bg {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    min-height: 500px !important;
    border-radius: 20px !important;
  }

  .hero-content {
    padding: 24px 20px 26px !important;
  }

  .hero-title,
  .hero-content h1 {
    font-size: clamp(2.15rem, 8.6vw, 3.1rem) !important;
    line-height: 1.0 !important;
  }

  .hero-lead {
    margin-top: 16px !important;
    font-size: 1rem !important;
    line-height: 1.65 !important;
    max-width: 32rem !important;
  }

  .hero-actions {
    gap: 10px !important;
    margin-top: 20px !important;
  }

  .hero-btn {
    width: 100% !important;
    min-height: 52px !important;
  }

  .content-section {
    margin-top: 14px !important;
  }

  .section-title {
    max-width: min(100%, 22rem) !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    padding: 15px 24px 14px !important;
    border-radius: 12px !important;
  }

  .section-title > span::after {
    margin-top: 8px !important;
  }

  .section-card,
  .content-section .section-copy,
  .content-section .contact-layout,
  .info-card,
  .service-item,
  .bottom-grid .small-card,
  .values-strip .value-item {
    border-radius: 20px !important;
  }

  #kontakt .contact-cards,
  .contact-cards,
  .bottom-grid {
    gap: 14px !important;
  }

  .values-strip {
    margin-top: clamp(40px, 10vw, 64px) !important;
    margin-bottom: clamp(40px, 10vw, 64px) !important;
  }
}

@media (max-width: 768px) {
  .values-strip,
  #prywatnosc.bottom-grid,
  .bottom-grid#prywatnosc {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  .values-strip {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .values-strip .value-item,
  #prywatnosc.bottom-grid .small-card,
  .bottom-grid#prywatnosc .small-card {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  #prywatnosc.bottom-grid,
  .bottom-grid#prywatnosc {
    display: grid !important;
    grid-template-columns: 1fr !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 768px) {
  .page-shell {
    width: 94vw !important;
    max-width: 94vw !important;
  }
}

@media (max-width: 768px) {
  .values-strip {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow: hidden !important;
    border-radius: 22px !important;
    background: linear-gradient(180deg, rgba(10,16,27,0.98), rgba(6,11,20,0.98)) !important;
    background-color: rgba(8, 9, 12, 0.92) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-sizing: border-box !important;
  }

  .values-strip .value-item {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 22px 18px !important;
    background: transparent !important;
    background-color: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
  }

  .values-strip .value-item + .value-item {
    border-top: 1px solid rgba(255,255,255,0.12) !important;
  }

  .values-strip .value-item + .value-item::before {
    display: none !important;
    content: none !important;
  }
}

@media (max-width: 768px) {
  .values-strip .value-item {
    position: relative !important;
  }

  .values-strip .value-item + .value-item {
    border-top: 0 !important;
  }

  .values-strip .value-item + .value-item::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    left: 22px !important;
    right: 22px !important;
    top: 0 !important;
    height: 1px !important;
    width: auto !important;
    background: rgba(255, 255, 255, 0.14) !important;
  }
}

@media (max-width: 768px) {
  .values-strip .value-item + .value-item::before {
    left: 50% !important;
    right: auto !important;
    width: 78% !important;
    transform: translateX(-50%) !important;
  }
}

@media (max-width: 768px) {
  .page-shell {
    width: 94vw !important;
    max-width: 94vw !important;
  }

  main,
  #top,
  .hero-section,
  .content-section,
  .values-strip,
  #prywatnosc.bottom-grid,
  .bottom-grid#prywatnosc,
  .site-footer {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  .hero-shell,
  .hero-shell--bg,
  .content-section .section-grid,
  .content-section .section-grid--firm,
  .content-section .section-grid--services,
  .content-section .section-grid--contact,
  .content-section .section-visual,
  .content-section .mobile-priority,
  .content-section .section-visual picture,
  .content-section .mobile-priority picture,
  .content-section .section-visual img,
  .content-section .mobile-priority img,
  .content-section .section-copy,
  .content-section .contact-layout,
  .contact-cards,
  #kontakt .contact-cards,
  .bottom-grid,
  .values-strip {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  .hero-shell,
  .hero-shell--bg,
  .content-section .section-grid,
  .content-section .section-grid--firm,
  .content-section .section-grid--services,
  .content-section .section-grid--contact {
    margin: 0 !important;
  }

  .section-card,
  .content-section .section-copy,
  .content-section .contact-layout,
  .info-card,
  .service-item,
  .values-strip .value-item,
  #prywatnosc.bottom-grid .small-card,
  .bottom-grid#prywatnosc .small-card,
  .bottom-grid .small-card {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  .site-footer {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.section-title {
  display: block !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  text-align: right !important;
}

.section-title::before,
.section-title::after {
  display: none !important;
  content: none !important;
}

.section-title > span {
  display: inline-block !important;
  max-width: 100% !important;
  color: #eef2f6 !important;
  background: linear-gradient(180deg, #ffffff 0%, #dde4ec 58%, #c6ced8 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.18), 0 10px 22px rgba(0, 0, 0, 0.32) !important;
}

.section-title > span::after {
  content: '' !important;
  display: block !important;
  width: 100% !important;
  height: 2px !important;
  margin-top: 10px !important;
  margin-left: auto !important;
  background: #f5c542 !important;
  border-radius: 999px !important;
}

@media (max-width: 768px) {
  .section-title {
    width: fit-content !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .section-title > span::after {
    margin-top: 8px !important;
  }
}

.section-title {
  display: block !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: 0 !important;
  padding: 12px 18px 14px 24px !important;
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  text-align: right !important;
}

@media (max-width: 768px) {
  .section-title {
    width: fit-content !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    padding: 10px 14px 12px 18px !important;
    background: transparent !important;
    background-color: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
}

.section-title {
  display: block !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin-top: 26px !important;
  margin-left: auto !important;
  margin-right: 0 !important;
  padding: 14px 18px 16px 24px !important;
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  text-align: right !important;
  font-size: clamp(1.72rem, 2.1vw, 2.18rem) !important;
  line-height: 1.08 !important;
}

.section-title::before {
  display: none !important;
  content: none !important;
}

.section-title::after {
  content: '' !important;
  display: block !important;
  width: 100% !important;
  height: 2px !important;
  margin-top: 10px !important;
  margin-left: auto !important;
  background: #f5c542 !important;
  border-radius: 999px !important;
}

.section-title > span {
  display: inline-block !important;
  max-width: 100% !important;
  color: #eef2f6 !important;
  background: linear-gradient(180deg, #ffffff 0%, #dde4ec 58%, #c6ced8 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.18), 0 10px 22px rgba(0, 0, 0, 0.32) !important;
}

.section-title > span::after {
  display: none !important;
  content: none !important;
}

@media (max-width: 768px) {
  .section-title {
    width: fit-content !important;
    max-width: 100% !important;
    margin-top: 22px !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    padding: 12px 14px 14px 18px !important;
    background: transparent !important;
    background-color: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-size: clamp(1.44rem, 5.2vw, 1.82rem) !important;
    line-height: 1.1 !important;
  }

  .section-title::after {
    margin-top: 8px !important;
  }
}

.section-title {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-top: 26px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 14px 24px 16px 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  text-align: right !important;
  font-size: clamp(1.72rem, 2.1vw, 2.18rem) !important;
  line-height: 1.08 !important;
  box-sizing: border-box !important;
}

.section-title::before {
  display: none !important;
  content: none !important;
}

.section-title::after {
  content: '' !important;
  display: block !important;
  width: 100% !important;
  height: 2px !important;
  margin-top: 10px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  background: #f5c542 !important;
  border-radius: 999px !important;
}

.section-title > span {
  display: inline-block !important;
  max-width: 100% !important;
  color: #eef2f6 !important;
  background: linear-gradient(180deg, #ffffff 0%, #dde4ec 58%, #c6ced8 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.18), 0 10px 22px rgba(0, 0, 0, 0.32) !important;
}

.section-title > span::after {
  display: none !important;
  content: none !important;
}

@media (max-width: 768px) {
  .section-title {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 22px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 12px 18px 14px 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-size: clamp(1.44rem, 5.2vw, 1.82rem) !important;
    line-height: 1.1 !important;
    box-sizing: border-box !important;
  }

  .section-title::after {
    width: 100% !important;
    margin-top: 8px !important;
  }
}

.section-title {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 60px 0 40px 0 !important;
  padding: 40px !important;
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  border-bottom: 2px solid #f5c542 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  text-align: right !important;
  font-size: clamp(1.72rem, 2.1vw, 2.18rem) !important;
  line-height: 1.08 !important;
  box-sizing: border-box !important;
}

.section-title::before,
.section-title::after {
  display: none !important;
  content: none !important;
}

.section-title > span {
  display: inline-block !important;
  max-width: 100% !important;
  color: #eef2f6 !important;
  background: linear-gradient(180deg, #ffffff 0%, #dde4ec 58%, #c6ced8 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.18), 0 10px 22px rgba(0, 0, 0, 0.32) !important;
}

.section-title > span::after {
  display: none !important;
  content: none !important;
}

@media (max-width: 768px) {
  .section-title {
    width: 100% !important;
    max-width: 100% !important;
    margin: 60px 0 40px 0 !important;
    padding: 40px !important;
    background: transparent !important;
    background-color: transparent !important;
    border: 0 !important;
    border-bottom: 2px solid #f5c542 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-size: clamp(1.44rem, 5.2vw, 1.82rem) !important;
    line-height: 1.1 !important;
    box-sizing: border-box !important;
  }
}

.section-title {
  width: 100% !important;
  max-width: 100% !important;
  margin: 60px 0 40px 0 !important;
  padding: 40px 40px 20px 40px !important;
  text-align: right !important;
  font-size: clamp(2.236rem, 2.73vw, 2.834rem) !important;
  line-height: 1.08 !important;
  box-sizing: border-box !important;
}

@media (max-width: 768px) {
  .section-title {
    width: 100% !important;
    max-width: 100% !important;
    margin: 60px 0 40px 0 !important;
    padding: 40px 40px 20px 40px !important;
    text-align: right !important;
    font-size: clamp(1.872rem, 6.76vw, 2.366rem) !important;
    line-height: 1.1 !important;
    box-sizing: border-box !important;
  }
}

.section-title {
  width: 100% !important;
  max-width: 100% !important;
  margin: 60px 0 40px 0 !important;
  padding: 40px 40px 20px 40px !important;
  text-align: right !important;
  font-size: clamp(2.236rem, 2.73vw, 2.834rem) !important;
  line-height: 1.08 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  box-sizing: border-box !important;
}

@media (max-width: 768px) {
  .section-title {
    width: 100% !important;
    max-width: 100% !important;
    margin: 60px 0 40px 0 !important;
    padding: 40px 40px 20px 40px !important;
    text-align: right !important;
    font-size: clamp(1.872rem, 6.76vw, 2.366rem) !important;
    line-height: 1.1 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    box-sizing: border-box !important;
  }
}

.section-title {
  width: 100% !important;
  max-width: 100% !important;
  margin-top: clamp(40px, 4.5vw, 60px) !important;
  margin-right: 0 !important;
  margin-bottom: clamp(28px, 3vw, 40px) !important;
  margin-left: 0 !important;
  padding-top: clamp(24px, 3vw, 40px) !important;
  padding-right: clamp(20px, 3vw, 40px) !important;
  padding-bottom: clamp(10px, 1.5vw, 20px) !important;
  padding-left: clamp(20px, 3vw, 40px) !important;
  text-align: right !important;
  font-size: clamp(1.872rem, 2.73vw, 2.834rem) !important;
  line-height: 1.08 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  box-sizing: border-box !important;
}

.section-title::before,
.section-title::after {
  display: none !important;
  content: none !important;
}

.section-title > span {
  display: inline-block !important;
  max-width: 100% !important;
  color: #eef2f6 !important;
  background: linear-gradient(180deg, #ffffff 0%, #dde4ec 58%, #c6ced8 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.18), 0 10px 22px rgba(0, 0, 0, 0.32) !important;
}

.section-title > span::after {
  display: none !important;
  content: none !important;
}

.section-title {
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  border-bottom: 2px solid #f5c542 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

@media (max-width: 768px) {
  :root {
    --smg-mobile-page-width: 94vw;
  }

  .site-header {
    width: 100vw !important;
    max-width: 100vw !important;
  }

  .page-shell {
    width: var(--smg-mobile-page-width) !important;
    max-width: var(--smg-mobile-page-width) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }

  main,
  #top,
  .hero-section,
  .content-section,
  .values-strip,
  #prywatnosc.bottom-grid,
  .bottom-grid#prywatnosc,
  .site-footer {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }

  .hero-shell,
  .hero-shell--bg,
  .content-section .section-grid,
  .content-section .section-grid--firm,
  .content-section .section-grid--services,
  .content-section .section-grid--contact,
  .content-section .section-visual,
  .content-section .mobile-priority,
  .content-section .section-copy,
  .content-section .contact-layout,
  .contact-cards,
  #kontakt .contact-cards,
  .bottom-grid,
  #prywatnosc.bottom-grid,
  .bottom-grid#prywatnosc,
  .values-strip {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  .content-section .section-visual picture,
  .content-section .mobile-priority picture,
  .content-section .section-visual img,
  .content-section .mobile-priority img {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  .section-title {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  .section-card,
  .content-section .section-copy,
  .content-section .contact-layout,
  .service-list,
  .service-item,
  .contact-cards,
  .info-card,
  #kontakt .contact-cards .info-card,
  .values-strip .value-item,
  #prywatnosc.bottom-grid .small-card,
  .bottom-grid#prywatnosc .small-card,
  .bottom-grid .small-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  .contact-cards,
  #kontakt .contact-cards,
  .service-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    column-gap: 0 !important;
    row-gap: 14px !important;
  }

  .bottom-grid,
  #prywatnosc.bottom-grid,
  .bottom-grid#prywatnosc {
    display: grid !important;
    grid-template-columns: 1fr !important;
    column-gap: 0 !important;
    row-gap: 14px !important;
  }

  .values-strip {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .site-footer {
    text-align: center !important;
  }
}

@media (max-width: 768px) {
  :root {
    --smg-mobile-visible-width: 94vw;
  }

  .site-header {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  .page-shell {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    box-sizing: border-box !important;
  }

  main,
  #top {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }

  .hero-section,
  .content-section,
  .bottom-grid,
  #prywatnosc.bottom-grid,
  .bottom-grid#prywatnosc {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }

  .hero-shell,
  .hero-shell--bg,
  .section-title,
  .content-section .section-grid,
  .content-section .section-grid--firm,
  .content-section .section-grid--services,
  .content-section .section-grid--contact,
  .values-strip,
  #prywatnosc.bottom-grid .small-card,
  .bottom-grid#prywatnosc .small-card,
  .site-footer {
    width: var(--smg-mobile-visible-width) !important;
    max-width: var(--smg-mobile-visible-width) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  .hero-shell,
  .hero-shell--bg {
    margin-top: 0 !important;
  }

  .section-title {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .content-section .section-visual,
  .content-section .mobile-priority,
  .content-section .section-visual picture,
  .content-section .mobile-priority picture,
  .content-section .section-visual img,
  .content-section .mobile-priority img,
  .content-section .section-copy,
  .content-section .contact-layout,
  .section-card,
  .service-list,
  .service-item,
  .contact-cards,
  #kontakt .contact-cards,
  .info-card,
  #kontakt .contact-cards .info-card,
  .values-strip .value-item {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  .contact-cards,
  #kontakt .contact-cards,
  .service-list,
  .bottom-grid,
  #prywatnosc.bottom-grid,
  .bottom-grid#prywatnosc {
    display: grid !important;
    grid-template-columns: 1fr !important;
    column-gap: 0 !important;
    row-gap: 14px !important;
  }

  .values-strip {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .site-footer {
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: center !important;
  }
}

@media (max-width: 768px) {
  :root {
    --smg-mobile-visible-width: 94vw;
  }

  .site-header {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  .page-shell,
  main,
  #top,
  .hero-section,
  .content-section,
  .content-section .section-grid,
  .content-section .section-grid--firm,
  .content-section .section-grid--services,
  .content-section .section-grid--contact,
  .bottom-grid,
  #prywatnosc.bottom-grid,
  .bottom-grid#prywatnosc {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }

  .content-section .section-grid,
  .content-section .section-grid--firm,
  .content-section .section-grid--services,
  .content-section .section-grid--contact {
    display: block !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  .hero-shell,
  .hero-shell--bg,
  .section-title,
  .content-section .section-visual,
  .content-section .mobile-priority,
  .content-section .section-copy,
  .content-section .contact-layout,
  .values-strip,
  #prywatnosc.bottom-grid .small-card,
  .bottom-grid#prywatnosc .small-card,
  .site-footer {
    width: var(--smg-mobile-visible-width) !important;
    max-width: var(--smg-mobile-visible-width) !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  .content-section .section-visual picture,
  .content-section .mobile-priority picture,
  .content-section .section-visual img,
  .content-section .mobile-priority img {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  .section-card,
  .content-section .section-copy,
  .content-section .contact-layout,
  .service-list,
  .service-item,
  .contact-cards,
  #kontakt .contact-cards,
  .info-card,
  #kontakt .contact-cards .info-card,
  .values-strip .value-item,
  #prywatnosc.bottom-grid .small-card,
  .bottom-grid#prywatnosc .small-card {
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .service-list,
  .contact-cards,
  #kontakt .contact-cards {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    column-gap: 0 !important;
    row-gap: 14px !important;
  }

  .service-item,
  .info-card,
  #kontakt .contact-cards .info-card {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .values-strip {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .values-strip .value-item {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .site-footer {
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: center !important;
  }
}

@media (max-width: 768px) {

  #uslugi .section-copy {
    width: 94vw !important;
    max-width: 94vw !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  #uslugi .service-list {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    column-gap: 0 !important;
    row-gap: 14px !important;
    box-sizing: border-box !important;
  }

  #uslugi .service-item {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  #kontakt .contact-layout {
    width: 94vw !important;
    max-width: 94vw !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }

  #kontakt .contact-cards {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    column-gap: 0 !important;
    row-gap: 14px !important;
    box-sizing: border-box !important;
  }

  #kontakt .contact-cards .info-card,
  #kontakt .info-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  #kontakt .section-grid,
  #kontakt .section-grid--contact {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.main-nav a,
.section-title {
  font-family: "Rajdhani", "Oxanium", sans-serif !important;
}

.main-nav a {
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
}

.section-title {
  font-weight: 700 !important;
  letter-spacing: 0.11em !important;
}

.section-title {
  border-bottom: 1.5px solid #f5c542 !important;
}

#prywatnosc.bottom-grid .small-card,
.bottom-grid#prywatnosc .small-card {
  background: linear-gradient(180deg, rgba(8, 12, 19, 0.82), rgba(6, 9, 15, 0.88)) !important;
  border-color: rgba(255, 255, 255, 0.065) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26) !important;
}

#prywatnosc.bottom-grid .small-card p,
.bottom-grid#prywatnosc .small-card p {
  color: rgba(230, 236, 245, 0.82) !important;
}

.site-footer {
  color: rgba(230, 236, 245, 0.62) !important;
}

.site-footer p {
  color: inherit !important;
}

@media (max-width: 768px) {
  .section-title {
    border-bottom: 1.5px solid #f5c542 !important;
  }

  #prywatnosc.bottom-grid .small-card,
  .bottom-grid#prywatnosc .small-card {
    background: linear-gradient(180deg, rgba(8, 12, 19, 0.82), rgba(6, 9, 15, 0.88)) !important;
    border-color: rgba(255, 255, 255, 0.065) !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24) !important;
  }
}

.section-visual img,
.mobile-priority img {
  image-rendering: auto !important;
  transform: translateZ(0);
  backface-visibility: hidden;
}

@media (max-width: 700px) {
  .hero-shell--bg {
    background-image:
      linear-gradient(180deg, rgba(2,7,14,0.32) 0%, rgba(2,7,14,0.56) 34%, rgba(2,7,14,0.88) 72%, rgba(2,7,14,0.96) 100%),
      url('assets/responsive/hero-bg-960.png') !important;
  }
  @supports (background-image: image-set(url("assets/responsive/hero-bg-960.webp") type("image/webp"))) {
    .hero-shell--bg {
      background-image:
        linear-gradient(180deg, rgba(2,7,14,0.32) 0%, rgba(2,7,14,0.56) 34%, rgba(2,7,14,0.88) 72%, rgba(2,7,14,0.96) 100%),
        image-set(url("assets/responsive/hero-bg-960.webp") type("image/webp"), url("assets/responsive/hero-bg-960.png") type("image/png")) !important;
    }
  }
}

@media (min-width: 701px) and (max-width: 1199px) {
  .hero-shell--bg {
    background-image:
      linear-gradient(90deg, rgba(2,7,14,0.90) 0%, rgba(2,7,14,0.84) 34%, rgba(2,7,14,0.58) 58%, rgba(2,7,14,0.28) 100%),
      url('assets/responsive/hero-bg-1440.png') !important;
  }
  @supports (background-image: image-set(url("assets/responsive/hero-bg-1440.webp") type("image/webp"))) {
    .hero-shell--bg {
      background-image:
        linear-gradient(90deg, rgba(2,7,14,0.90) 0%, rgba(2,7,14,0.84) 34%, rgba(2,7,14,0.58) 58%, rgba(2,7,14,0.28) 100%),
        image-set(url("assets/responsive/hero-bg-1440.webp") type("image/webp"), url("assets/responsive/hero-bg-1440.png") type("image/png")) !important;
    }
  }
}

@media (min-width: 1200px) {
  .hero-shell--bg {
    background-image:
      linear-gradient(90deg, rgba(2,7,14,0.90) 0%, rgba(2,7,14,0.84) 34%, rgba(2,7,14,0.58) 58%, rgba(2,7,14,0.28) 100%),
      url('assets/responsive/hero-bg-1672.png') !important;
  }
  @supports (background-image: image-set(url("assets/responsive/hero-bg-1672.webp") type("image/webp"))) {
    .hero-shell--bg {
      background-image:
        linear-gradient(90deg, rgba(2,7,14,0.90) 0%, rgba(2,7,14,0.84) 34%, rgba(2,7,14,0.58) 58%, rgba(2,7,14,0.28) 100%),
        image-set(url("assets/responsive/hero-bg-1672.webp") type("image/webp"), url("assets/responsive/hero-bg-1672.png") type("image/png")) !important;
    }
  }
}

@media (min-width: 881px) {
  .main-nav a {
    font-size: 1.2rem !important;
    line-height: 1.1 !important;
  }
}

@media (min-width: 881px) {
  .main-nav {
    gap: 0 !important;
    align-items: stretch !important;
    border-left: 1px solid rgba(255, 255, 255, 0.14) !important;
  }

  .main-nav a {
    min-width: 132px !important;
    padding: 14px 18px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    border-right: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 0 !important;
    background: transparent !important;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: rgba(255, 196, 0, 0.12) !important;
    color: var(--accent) !important;
    outline: none !important;
  }
}

@media (min-width: 881px) {
  .site-header {
    min-height: 120px !important;
    align-items: stretch !important;
  }

  .brand {
    align-self: center !important;
  }

  .main-nav {
    align-self: stretch !important;
    display: flex !important;
    align-items: stretch !important;
    gap: 0 !important;
    border-left: 1px solid rgba(255, 255, 255, 0.34) !important;
  }

  .main-nav a {
    min-width: 132px !important;
    min-height: 120px !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 20px !important;
    text-align: center !important;
    border-right: 1px solid rgba(255, 255, 255, 0.34) !important;
    border-radius: 0 !important;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: rgba(255, 196, 0, 0.12) !important;
    color: var(--accent) !important;
  }
}

@media (min-width: 881px) {
  .site-header {
    min-height: 100px !important;
  }

  .main-nav {
    align-self: stretch !important;
    align-items: stretch !important;
    gap: 0 !important;
  }

  .main-nav a {
    min-width: 165px !important;
    height: 100px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

@media (min-width: 881px) {
  .site-header {
    align-items: center !important;
  }

  .brand {
    display: flex !important;
    align-items: center !important;
  }

  .brand img,
  .logo img,
  .site-logo img {
    display: block !important;
  }

  .main-nav {
    align-self: center !important;
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    min-height: var(--smg-menu-logo-height, 82px) !important;
    border-left: 1px solid rgba(255,255,255,0.32) !important;
  }

  .main-nav a {
    min-width: 165px !important;
    height: var(--smg-menu-logo-height, 82px) !important;
    min-height: var(--smg-menu-logo-height, 82px) !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    border-right: 1px solid rgba(255,255,255,0.32) !important;
    border-radius: 0 !important;
    line-height: 1.15 !important;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: rgba(255,196,0,0.12) !important;
    color: var(--accent) !important;
  }
}

@media (min-width: 881px) {
  .main-nav a {
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate !important;
    background: transparent !important;
    transition: color 0.22s ease !important;
  }

  .main-nav a::before {
    display: none !important;
    content: none !important;
  }

  .main-nav a::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: rgba(255, 196, 0, 0.12) !important;
    opacity: 0 !important;
    clip-path: inset(100% 0 0 0) !important;
    transition:
      clip-path 0.28s ease,
      opacity 0.18s ease !important;
    z-index: -1 !important;
    pointer-events: none !important;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: transparent !important;
    color: var(--accent) !important;
  }

  .main-nav a:hover::after,
  .main-nav a:focus-visible::after {
    opacity: 1 !important;
    clip-path: inset(0 0 0 0) !important;
  }
}

@media (prefers-reduced-motion: reduce) and (min-width: 881px) {
  .main-nav a::after {
    transition: none !important;
  }
}

@media (min-width: 881px) {
  .main-nav a::after {
    opacity: 0 !important;
    clip-path: inset(50% 0 50% 0) !important;
    transition:
      clip-path 0.28s ease,
      opacity 0.18s ease !important;
  }

  .main-nav a:hover::after,
  .main-nav a:focus-visible::after {
    opacity: 1 !important;
    clip-path: inset(0 0 0 0) !important;
  }
}

@media (prefers-reduced-motion: reduce) and (min-width: 881px) {
  .main-nav a::after {
    transition: none !important;
  }
}

.page-start-anchor {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 1px !important;
  height: 1px !important;
  pointer-events: none !important;
  scroll-margin-top: 0 !important;
}

#o-firmie .section-visual,
#uslugi .section-visual,
#kontakt .section-visual,
#o-firmie .mobile-priority,
#uslugi .mobile-priority,
#kontakt .mobile-priority {
  aspect-ratio: 16 / 8 !important;
  overflow: hidden !important;
}

#o-firmie .section-visual picture,
#uslugi .section-visual picture,
#kontakt .section-visual picture,
#o-firmie .mobile-priority picture,
#uslugi .mobile-priority picture,
#kontakt .mobile-priority picture {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

#o-firmie .section-visual img,
#uslugi .section-visual img,
#kontakt .section-visual img,
#o-firmie .mobile-priority img,
#uslugi .mobile-priority img,
#kontakt .mobile-priority img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 16 / 8 !important;
  object-fit: cover !important;
}

/* SMG_v194 — final lock: ujednolicenie kluczowych wartości sekcji.
   To NIE jest czyszczenie CSS-a. Ten blok świadomie zostaje na końcu pliku,
   aby stabilizować finalny wygląd po wcześniejszych warstwach CSS. */

/* 1) Wspólna szerokość kontenerów treści sekcji na desktopie */
@media (min-width: 881px) {
  #o-firmie .section-copy,
  #uslugi .section-copy,
  #kontakt .contact-layout {
    width: min(48%, 640px) !important;
    max-width: 640px !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }
}

/* 2) Mobile: treść sekcji zachowuje pełną szerokość mobilnego układu */
@media (max-width: 880px) {
  #o-firmie .section-copy,
  #uslugi .section-copy,
  #kontakt .contact-layout {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }
}

/* 3) Wspólna typografia treści sekcji */
#o-firmie .section-copy p,
#uslugi .section-copy p,
#kontakt .info-card p,
#kontakt .protected-contact,
#uslugi .service-item-copy span {
  font-size: 1rem !important;
  line-height: 1.6 !important;
}

#o-firmie .lead-emphasis,
#uslugi .lead-emphasis {
  font-size: 1.02rem !important;
  line-height: 1.62 !important;
}

/* 4) Nagłówki wewnętrzne kart — spójne, bez zmiany nagłówków głównych sekcji */
#kontakt .info-card h3,
#uslugi .service-item-copy strong {
  font-size: 1rem !important;
  line-height: 1.25 !important;
}

/* 5) Finalne proporcje obrazów/tła sekcji: 16:8 desktop i mobile */
#o-firmie .section-visual,
#uslugi .section-visual,
#kontakt .section-visual,
#o-firmie .mobile-priority,
#uslugi .mobile-priority,
#kontakt .mobile-priority {
  aspect-ratio: 16 / 8 !important;
  overflow: hidden !important;
}

#o-firmie .section-visual picture,
#uslugi .section-visual picture,
#kontakt .section-visual picture,
#o-firmie .mobile-priority picture,
#uslugi .mobile-priority picture,
#kontakt .mobile-priority picture,
#o-firmie .section-visual img,
#uslugi .section-visual img,
#kontakt .section-visual img,
#o-firmie .mobile-priority img,
#uslugi .mobile-priority img,
#kontakt .mobile-priority img {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 16 / 8 !important;
  object-fit: cover !important;
}


/* SMG_v199 — menu: żółty gradient i aktywna sekcja */
@media (min-width: 881px) {
  .main-nav a::after {
    background:
      linear-gradient(
        135deg,
        rgba(255, 214, 82, 0.30) 0%,
        rgba(255, 196, 0, 0.18) 42%,
        rgba(214, 154, 0, 0.28) 100%
      ) !important;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible,
  .main-nav a.is-active {
    background: transparent !important;
    color: #ffe18a !important;
  }

  .main-nav a.is-active::after {
    opacity: 1 !important;
    clip-path: inset(0 0 0 0) !important;
  }

  .main-nav a.is-active:hover::after,
  .main-nav a.is-active:focus-visible::after {
    opacity: 1 !important;
    clip-path: inset(0 0 0 0) !important;
  }
}

@media (max-width: 880px) {
  .main-nav a.is-active {
    color: var(--accent) !important;
    background: rgba(255, 196, 0, 0.10) !important;
  }
}


/* SMG_v200 — krótkie podsumowania premium pod sekcjami O firmie i Dostawy */
.summary-strip {
  display: grid !important;
  gap: clamp(14px, 1.4vw, 20px) !important;
  width: min(90vw, var(--maxw)) !important;
  margin: clamp(18px, 2vw, 28px) auto clamp(26px, 3vw, 42px) !important;
}

.summary-strip--about {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.summary-strip--deliveries {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.summary-item {
  position: relative !important;
  overflow: hidden !important;
  min-height: 170px !important;
  padding: clamp(22px, 2vw, 28px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: var(--radius-sm) !important;
  background:
    linear-gradient(180deg, rgba(12, 18, 29, 0.86), rgba(7, 11, 18, 0.92)) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28) !important;
}

.summary-item::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  background:
    radial-gradient(circle at top right, rgba(255, 196, 0, 0.13), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.045), transparent 46%) !important;
  opacity: 0.82 !important;
}

.summary-icon {
  position: relative !important;
  z-index: 1 !important;
  display: inline-grid !important;
  place-items: center !important;
  width: 48px !important;
  height: 48px !important;
  margin-bottom: 16px !important;
  border-radius: 16px !important;
  color: var(--accent) !important;
  background: rgba(255, 196, 0, 0.12) !important;
  border: 1px solid rgba(255, 196, 0, 0.22) !important;
}

.summary-icon svg {
  width: 25px !important;
  height: 25px !important;
  fill: currentColor !important;
}

.summary-item h3,
.summary-item p {
  position: relative !important;
  z-index: 1 !important;
}

.summary-item h3 {
  margin: 0 0 8px !important;
  font-family: "Rajdhani", "Oxanium", sans-serif !important;
  font-size: clamp(1.05rem, 1.18vw, 1.28rem) !important;
  line-height: 1.15 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #fff !important;
}

.summary-item p {
  margin: 0 !important;
  font-size: 0.96rem !important;
  line-height: 1.55 !important;
  color: rgba(230, 236, 245, 0.82) !important;
}

@media (max-width: 1100px) {
  .summary-strip--about,
  .summary-strip--deliveries {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 768px) {
  .summary-strip {
    width: 94vw !important;
    max-width: 94vw !important;
    grid-template-columns: 1fr !important;
    margin-top: 14px !important;
    margin-bottom: 28px !important;
  }

  .summary-item {
    min-height: auto !important;
    padding: 22px !important;
  }

  .summary-item h3 {
    font-size: 1.05rem !important;
  }

  .summary-item p {
    font-size: 0.95rem !important;
  }
}


/* SMG_v201 — Hero: czytelniejsza prawa strona zdjęcia.
   Lewa strona zostaje ciemna pod tekst, prawa ma słabszy overlay,
   żeby samochód, droga i miasto były wyraźniejsze, ale nadal nocne. */
.hero-shell--bg {
  background-image:
    linear-gradient(
      90deg,
      rgba(2, 7, 14, 0.94) 0%,
      rgba(2, 7, 14, 0.86) 28%,
      rgba(2, 7, 14, 0.58) 50%,
      rgba(2, 7, 14, 0.24) 74%,
      rgba(2, 7, 14, 0.10) 100%
    ),
    url('assets/responsive/hero-bg-1672.png') !important;
}

@supports (background-image: image-set(url("assets/responsive/hero-bg-1672.webp") type("image/webp"))) {
  .hero-shell--bg {
    background-image:
      linear-gradient(
        90deg,
        rgba(2, 7, 14, 0.94) 0%,
        rgba(2, 7, 14, 0.86) 28%,
        rgba(2, 7, 14, 0.58) 50%,
        rgba(2, 7, 14, 0.24) 74%,
        rgba(2, 7, 14, 0.10) 100%
      ),
      image-set(url("assets/responsive/hero-bg-1672.webp") type("image/webp"), url("assets/responsive/hero-bg-1672.png") type("image/png")) !important;
  }
}

@media (min-width: 701px) and (max-width: 1199px) {
  .hero-shell--bg {
    background-image:
      linear-gradient(
        90deg,
        rgba(2, 7, 14, 0.94) 0%,
        rgba(2, 7, 14, 0.86) 30%,
        rgba(2, 7, 14, 0.58) 52%,
        rgba(2, 7, 14, 0.26) 76%,
        rgba(2, 7, 14, 0.12) 100%
      ),
      url('assets/responsive/hero-bg-1440.png') !important;
  }

  @supports (background-image: image-set(url("assets/responsive/hero-bg-1440.webp") type("image/webp"))) {
    .hero-shell--bg {
      background-image:
        linear-gradient(
          90deg,
          rgba(2, 7, 14, 0.94) 0%,
          rgba(2, 7, 14, 0.86) 30%,
          rgba(2, 7, 14, 0.58) 52%,
          rgba(2, 7, 14, 0.26) 76%,
          rgba(2, 7, 14, 0.12) 100%
        ),
        image-set(url("assets/responsive/hero-bg-1440.webp") type("image/webp"), url("assets/responsive/hero-bg-1440.png") type("image/png")) !important;
    }
  }
}

/* Mobile zostawiamy bardziej przyciemniony, bo tam tekst i obraz konkurują mocniej. */
@media (max-width: 700px) {
  .hero-shell--bg {
    background-image:
      linear-gradient(
        180deg,
        rgba(2, 7, 14, 0.30) 0%,
        rgba(2, 7, 14, 0.52) 34%,
        rgba(2, 7, 14, 0.82) 72%,
        rgba(2, 7, 14, 0.94) 100%
      ),
      url('assets/responsive/hero-bg-960.png') !important;
  }

  @supports (background-image: image-set(url("assets/responsive/hero-bg-960.webp") type("image/webp"))) {
    .hero-shell--bg {
      background-image:
        linear-gradient(
          180deg,
          rgba(2, 7, 14, 0.30) 0%,
          rgba(2, 7, 14, 0.52) 34%,
          rgba(2, 7, 14, 0.82) 72%,
          rgba(2, 7, 14, 0.94) 100%
        ),
        image-set(url("assets/responsive/hero-bg-960.webp") type("image/webp"), url("assets/responsive/hero-bg-960.png") type("image/png")) !important;
    }
  }
}


/* SMG_v204 — ujednolicenie stylu kafelków podsumowania i wartości
   Jeden wspólny język wizualny: ciemny panel, subtelny gradient, separatory pionowe. */

/* Wspólne tło i obramowanie */
.values-strip,
.summary-strip {
  border: 1px solid var(--stroke) !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at top right, rgba(255, 196, 0, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(10, 16, 27, 0.98), rgba(6, 11, 20, 0.98)) !important;
  box-shadow: var(--shadow) !important;
}

/* Podsumowania jako jeden wspólny panel, nie osobne kafelki */
.summary-strip {
  display: grid !important;
  gap: 0 !important;
  width: min(90vw, var(--maxw)) !important;
  margin: clamp(18px, 2vw, 28px) auto clamp(26px, 3vw, 42px) !important;
}

.summary-strip--about {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.summary-strip--deliveries {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.summary-item {
  min-height: 0 !important;
  padding: 26px 18px 24px !important;
  text-align: center !important;
  position: relative !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

.summary-item::before {
  content: none !important;
}

.summary-item + .summary-item::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 22px !important;
  bottom: 22px !important;
  width: 1px !important;
  background: rgba(255,255,255,0.18) !important;
}

.summary-icon {
  width: 54px !important;
  height: 54px !important;
  margin: 0 auto 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--accent) !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
}

.summary-icon svg {
  width: 44px !important;
  height: 44px !important;
  fill: currentColor !important;
}

.summary-item h3 {
  margin: 0 0 12px !important;
  color: #fff !important;
  font-family: inherit !important;
  font-size: 1.03rem !important;
  letter-spacing: 0.03em !important;
  line-height: 1.25 !important;
  text-transform: none !important;
}

.summary-item p {
  margin: 0 !important;
  color: #edf1f6 !important;
  line-height: 1.65 !important;
  font-size: 1rem !important;
}

/* Drobne dopięcie sekcji wartości do tego samego klimatu */
.value-item {
  padding: 26px 18px 24px !important;
}

.value-item h3 {
  letter-spacing: 0.03em !important;
}

.value-item p {
  color: #edf1f6 !important;
  line-height: 1.65 !important;
}

/* Tablet / średnie szerokości */
@media (max-width: 1100px) {
  .summary-strip--about,
  .summary-strip--deliveries {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .summary-strip--about .summary-item:nth-child(3)::before,
  .summary-strip--deliveries .summary-item:nth-child(3)::before {
    display: none !important;
  }

  .summary-strip--about .summary-item:nth-child(3),
  .summary-strip--about .summary-item:nth-child(4),
  .summary-strip--deliveries .summary-item:nth-child(3) {
    border-top: 1px solid rgba(255,255,255,0.14) !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .summary-strip {
    width: 94vw !important;
    max-width: 94vw !important;
    grid-template-columns: 1fr !important;
    margin-top: 14px !important;
    margin-bottom: 28px !important;
    border-radius: 22px !important;
  }

  .summary-item {
    padding: 22px 16px !important;
  }

  .summary-item + .summary-item::before {
    display: none !important;
  }

  .summary-item + .summary-item {
    border-top: 1px solid rgba(255,255,255,0.12) !important;
  }
}


/* SMG_v205 — mobile: separator podsumowań z wewnętrznymi odsunięciami */
@media (max-width: 768px) {
  .summary-item + .summary-item {
    border-top: 0 !important;
  }

  .summary-item + .summary-item::after {
    content: "" !important;
    position: absolute !important;
    left: 16px !important;
    right: 16px !important;
    top: 0 !important;
    height: 1px !important;
    background: rgba(255,255,255,0.12) !important;
  }
}


/* SMG_v206 — mobile: separatory podsumowań dokładnie jak w wartościach */
@media (max-width: 768px) {
  .summary-strip .summary-item {
    position: relative !important;
  }

  .summary-strip .summary-item + .summary-item {
    border-top: 0 !important;
  }

  .summary-strip .summary-item + .summary-item::after {
    display: none !important;
    content: none !important;
  }

  .summary-strip .summary-item + .summary-item::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    top: 0 !important;
    bottom: auto !important;
    width: 78% !important;
    height: 1px !important;
    transform: translateX(-50%) !important;
    background: rgba(255, 255, 255, 0.14) !important;
  }
}


/* SMG_v209 — nagłówki sekcji przeniesione do środka kontenera sekcji */
@media (min-width: 881px) {
  .content-section .section-grid > .section-title {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 clamp(18px, 2vw, 26px) 0 !important;
    padding: 0 0 16px 0 !important;
    justify-content: flex-start !important;
    text-align: left !important;
    border-bottom: 1.5px solid rgba(245, 197, 66, 0.78) !important;
    box-sizing: border-box !important;
  }

  .content-section .section-grid > .section-title span {
    display: inline-block !important;
  }
}

@media (max-width: 880px) {
  .content-section .section-grid > .section-title {
    order: -2 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 18px 0 !important;
    padding: 0 0 14px 0 !important;
    text-align: right !important;
    border-bottom: 1.5px solid rgba(245, 197, 66, 0.78) !important;
    box-sizing: border-box !important;
  }
}


/* SMG_v210 — poprawka nagłówków wewnątrz kontenerów + proporcja 16:9 grafik sekcji */

/* 1) Nagłówki przeniesione do kontenerów: wymuszenie widoczności tekstu */
.content-section .section-grid > .section-title {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 3 !important;
  grid-column: 1 / -1 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 0 clamp(18px, 2vw, 28px) 0 !important;
  padding: 0 0 16px 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  border-bottom: 1.5px solid rgba(245, 197, 66, 0.78) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-align: left !important;
  font-size: clamp(1.65rem, 2.35vw, 2.55rem) !important;
  line-height: 1.08 !important;
  letter-spacing: 0.06em !important;
  text-transform: none !important;
  box-sizing: border-box !important;
}

.content-section .section-grid > .section-title::before,
.content-section .section-grid > .section-title::after,
.content-section .section-grid > .section-title > span::after {
  display: none !important;
  content: none !important;
}

.content-section .section-grid > .section-title > span {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: #eef2f6 !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: #eef2f6 !important;
  text-shadow: 0 2px 0 rgba(0,0,0,0.18), 0 10px 22px rgba(0,0,0,0.32) !important;
}

/* 2) Kontener sekcji po dodaniu nagłówka ma oddychać, nic nie ucinać */
.content-section .section-grid {
  grid-auto-rows: auto !important;
  align-items: stretch !important;
  overflow: visible !important;
}

.content-section .section-card,
.content-section .section-copy,
.content-section .contact-layout {
  overflow: visible !important;
  height: auto !important;
  max-height: none !important;
}

/* 3) Proporcje grafik sekcji: z 16:8 na 16:9, żeby sekcja z nagłówkiem miała więcej wysokości */
#o-firmie .section-visual,
#uslugi .section-visual,
#kontakt .section-visual,
#o-firmie .mobile-priority,
#uslugi .mobile-priority,
#kontakt .mobile-priority {
  aspect-ratio: 16 / 9 !important;
  overflow: hidden !important;
}

#o-firmie .section-visual picture,
#uslugi .section-visual picture,
#kontakt .section-visual picture,
#o-firmie .mobile-priority picture,
#uslugi .mobile-priority picture,
#kontakt .mobile-priority picture,
#o-firmie .section-visual img,
#uslugi .section-visual img,
#kontakt .section-visual img,
#o-firmie .mobile-priority img,
#uslugi .mobile-priority img,
#kontakt .mobile-priority img {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: cover !important;
}

@media (max-width: 880px) {
  .content-section .section-grid > .section-title {
    order: -2 !important;
    margin: 0 0 18px 0 !important;
    padding: 0 0 14px 0 !important;
    text-align: right !important;
    font-size: clamp(1.55rem, 6.2vw, 2.2rem) !important;
    line-height: 1.1 !important;
    letter-spacing: 0.04em !important;
  }
}


/* SMG_v211 — nagłówki sekcji do prawej + mniejszy dolny padding */
.content-section .section-grid > .section-title {
  text-align: right !important;
  justify-content: flex-end !important;
  padding-bottom: 8px !important;
}

.content-section .section-grid > .section-title > span {
  margin-left: auto !important;
  margin-right: 0 !important;
  text-align: right !important;
}

@media (max-width: 880px) {
  .content-section .section-grid > .section-title {
    text-align: right !important;
    justify-content: flex-end !important;
    padding-bottom: 7px !important;
  }
}


/* SMG_v212 — szerokość nagłówków jak kontener treści sekcji */
@media (min-width: 881px) {
  .content-section .section-grid > .section-title {
    grid-column: 1 / -1 !important;
    width: min(48%, 640px) !important;
    max-width: 640px !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    text-align: right !important;
    justify-content: flex-end !important;
  }

  .content-section .section-grid > .section-title > span {
    width: 100% !important;
    text-align: right !important;
  }
}

@media (max-width: 880px) {
  .content-section .section-grid > .section-title {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}


/* SMG_v213 — szerokość podsumowań jak sekcja + marginesy wartości jak podsumowania */

/* Podsumowania pod sekcjami: pełna szerokość modułu, analogicznie do wartości */
.summary-strip {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box !important;
}

/* Wartości firmy: takie same marginesy pionowe jak podsumowania sekcji */
.values-strip {
  margin-top: clamp(18px, 2vw, 28px) !important;
  margin-bottom: clamp(26px, 3vw, 42px) !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

@media (max-width: 768px) {
  .summary-strip,
  .values-strip {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  .values-strip {
    margin-top: 14px !important;
    margin-bottom: 28px !important;
  }
}


/* SMG_v220 — z późniejszych testów zostawiamy tylko: jaśniejsze tło dokumentu + żółty blur belki */

/* 1) Jaśniejsze tło dokumentu: html/body, bez zmiany kontenera strony */
html {
  min-height: 100% !important;
  background-color: #1d232b !important;
  background-image:
    radial-gradient(circle at 78% 6%, rgba(86, 101, 120, 0.30), transparent 34rem),
    radial-gradient(circle at 10% 34%, rgba(245, 197, 66, 0.055), transparent 26rem),
    radial-gradient(circle at 84% 78%, rgba(68, 80, 96, 0.22), transparent 32rem),
    linear-gradient(180deg, #262c34 0%, #1a212a 40%, #111923 74%, #181d24 100%) !important;
  background-attachment: fixed !important;
}

body {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

/* 2) Subtelny żółty blur przy dolnej krawędzi górnej belki */
.site-header {
  overflow: visible !important;
}

.site-header::after {
  content: "" !important;
  position: absolute !important;
  left: clamp(18px, 2vw, 34px) !important;
  right: clamp(18px, 2vw, 34px) !important;
  bottom: -1px !important;
  height: 2px !important;
  border-radius: 999px !important;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(245, 197, 66, 0.22) 18%,
    rgba(245, 197, 66, 0.82) 50%,
    rgba(245, 197, 66, 0.22) 82%,
    transparent 100%
  ) !important;
  box-shadow:
    0 0 14px rgba(245, 197, 66, 0.46),
    0 0 28px rgba(245, 197, 66, 0.22) !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

@media (max-width: 880px) {
  .site-header::after {
    left: 16px !important;
    right: 16px !important;
    height: 2px !important;
    bottom: -1px !important;
  }
}


/* SMG_v221 — spójny odstęp kotwic: 20px pod górną belką */
:root {
  --smg-anchor-gap: 20px;
}

html {
  scroll-padding-top: calc(154px + var(--smg-anchor-gap)) !important;
}

.content-section,
.values-strip,
#prywatnosc {
  scroll-margin-top: calc(154px + var(--smg-anchor-gap)) !important;
}

@media (max-width: 880px) {
  html {
    scroll-padding-top: calc(132px + var(--smg-anchor-gap)) !important;
  }

  .content-section,
  .values-strip,
  #prywatnosc {
    scroll-margin-top: calc(132px + var(--smg-anchor-gap)) !important;
  }
}


/* SMG_v222 — Start/Hero używa takiego samego wizualnego odstępu jak pozostałe kotwice */
.hero-section {
  scroll-margin-top: calc(154px + var(--smg-anchor-gap, 20px)) !important;
}

@media (max-width: 880px) {
  .hero-section {
    scroll-margin-top: calc(132px + var(--smg-anchor-gap, 20px)) !important;
  }
}


/* SMG_v223 — Start wraca do scrollowania top:0, a odstęp hero wyrównujemy layoutem */
main {
  padding-top: 0 !important;
}

.hero-section {
  margin-top: 0 !important;
}

/* Nie potrzebujemy już specjalnego scroll-margin dla hero, bo Start przewija do zera */
.hero-section {
  scroll-margin-top: 0 !important;
}

@media (max-width: 880px) {
  main {
    padding-top: 0 !important;
  }

  .hero-section {
    margin-top: 0 !important;
    scroll-margin-top: 0 !important;
  }
}


/* SMG_v224 — Start przewija do zera, a odstęp Hero wynika z layoutu */
:root {
  --smg-current-header-height: 134px;
  --smg-anchor-gap: 20px;
}

/* Pierwszy widok: belka + dokładnie 20px przerwy do Hero */
body {
  padding-top: calc(var(--smg-current-header-height) + var(--smg-anchor-gap)) !important;
}

main {
  padding-top: 0 !important;
}

.hero-section {
  margin-top: 0 !important;
  scroll-margin-top: 0 !important;
}

@media (max-width: 880px) {
  :root {
    --smg-current-header-height: 112px;
  }

  body {
    padding-top: calc(var(--smg-current-header-height) + var(--smg-anchor-gap)) !important;
  }

  main {
    padding-top: 0 !important;
  }

  .hero-section {
    margin-top: 0 !important;
    scroll-margin-top: 0 !important;
  }
}


/* SMG_v225 — twarda korekta: Start = top:0, Hero gap = 20px z layoutu, bez pomiaru JS */
/* Obecna belka ma wymuszone 120px wysokości, więc body: 120px + 20px = 140px. */
body {
  padding-top: 140px !important;
}

main,
#top {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.hero-section,
main > .hero-section,
.page-shell .hero-section,
.page-shell main > section:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
  scroll-margin-top: 0 !important;
}

/* Pozostałe sekcje zostają na sprawdzonej wartości z v221: belka + 20px. */
:root {
  --smg-anchor-gap: 20px;
}

html {
  scroll-padding-top: calc(120px + var(--smg-anchor-gap)) !important;
}

.content-section,
.values-strip,
#prywatnosc {
  scroll-margin-top: calc(120px + var(--smg-anchor-gap)) !important;
}

@media (max-width: 880px) {
  body {
    padding-top: 140px !important;
  }

  main,
  #top {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .hero-section,
  main > .hero-section,
  .page-shell .hero-section,
  .page-shell main > section:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
    scroll-margin-top: 0 !important;
  }

  html {
    scroll-padding-top: calc(120px + var(--smg-anchor-gap)) !important;
  }

  .content-section,
  .values-strip,
  #prywatnosc {
    scroll-margin-top: calc(120px + var(--smg-anchor-gap)) !important;
  }
}


/* SMG_v226 — poprawka odstępu Hero: nie sumujemy body padding + page-shell margin */
/*
  Cel:
  dolna krawędź stałej belki 120px
  + 20px przerwy
  = górna krawędź kontenera strony / Hero na 140px od góry viewportu.
*/

:root {
  --smg-fixed-header-height: 120px;
  --smg-hero-top-gap: 20px;
  --smg-page-top-offset: calc(var(--smg-fixed-header-height) + var(--smg-hero-top-gap));
}

/* Body nie może już odsuwać strony, bo wtedy dubluje odstęp z page-shell. */
body {
  padding-top: 0 !important;
}

/* To kontener strony ustawia właściwy odstęp od fixed headera. */
.page-shell {
  margin-top: var(--smg-page-top-offset) !important;
  margin-right: auto !important;
  margin-bottom: 0 !important;
  margin-left: auto !important;
}

/* Hero nie dokłada żadnego własnego górnego odstępu. */
main,
#top {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.hero-section,
main > .hero-section,
.page-shell .hero-section,
.page-shell main > section:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
  scroll-margin-top: 0 !important;
}

/* Pozostałe kotwice: ta sama logika 120px belki + 20px przerwy. */
html {
  scroll-padding-top: var(--smg-page-top-offset) !important;
}

.content-section,
.values-strip,
#prywatnosc {
  scroll-margin-top: var(--smg-page-top-offset) !important;
}

@media (max-width: 880px) {
  :root {
    --smg-fixed-header-height: 120px;
    --smg-hero-top-gap: 20px;
  }

  body {
    padding-top: 0 !important;
  }

  .page-shell {
    margin-top: var(--smg-page-top-offset) !important;
    margin-right: auto !important;
    margin-bottom: 0 !important;
    margin-left: auto !important;
  }

  main,
  #top {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .hero-section,
  main > .hero-section,
  .page-shell .hero-section,
  .page-shell main > section:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
    scroll-margin-top: 0 !important;
  }

  html {
    scroll-padding-top: var(--smg-page-top-offset) !important;
  }

  .content-section,
  .values-strip,
  #prywatnosc {
    scroll-margin-top: var(--smg-page-top-offset) !important;
  }
}


/* SMG_v227 — czwarty kafelek w podsumowaniu sekcji Dostawy */
.summary-strip--deliveries {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

@media (max-width: 1100px) {
  .summary-strip--deliveries {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .summary-strip--deliveries .summary-item:nth-child(3)::before {
    display: none !important;
  }

  .summary-strip--deliveries .summary-item:nth-child(3),
  .summary-strip--deliveries .summary-item:nth-child(4) {
    border-top: 1px solid rgba(255,255,255,0.14) !important;
  }
}

@media (max-width: 768px) {
  .summary-strip--deliveries {
    grid-template-columns: 1fr !important;
  }

  .summary-strip--deliveries .summary-item:nth-child(3),
  .summary-strip--deliveries .summary-item:nth-child(4) {
    border-top: 0 !important;
  }
}


/* SMG_v230 — test tła: grafit przechodzący w ciemny granat */
html {
  min-height: 100% !important;
  background-color: #121a26 !important;
  background-image:
    radial-gradient(circle at 76% 8%, rgba(32, 50, 76, 0.42), transparent 34rem),
    radial-gradient(circle at 12% 34%, rgba(245, 197, 66, 0.050), transparent 26rem),
    radial-gradient(circle at 84% 78%, rgba(20, 35, 58, 0.32), transparent 32rem),
    linear-gradient(
      180deg,
      #252b33 0%,
      #1b2635 34%,
      #121d2e 64%,
      #09111f 100%
    ) !important;
  background-attachment: fixed !important;
}

body {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}


/* SMG_v235 — ujednolicenie ikon podsumowań z ikonami sekcji Wartości firmy */
.summary-strip .summary-icon {
  width: 52px !important;
  height: 52px !important;
  border-radius: 17px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 16px !important;
  color: var(--accent) !important;
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,0.28), transparent 28%),
    linear-gradient(180deg, rgba(255,196,0,0.24), rgba(255,196,0,0.07)) !important;
  border: 1px solid rgba(255,196,0,0.35) !important;
  box-shadow: 0 0 26px rgba(255,196,0,0.14), inset 0 1px 0 rgba(255,255,255,0.18) !important;
}

.summary-strip .summary-icon svg {
  width: 27px !important;
  height: 27px !important;
  fill: currentColor !important;
  stroke: none !important;
}

@media (max-width: 880px) {
  .summary-strip .summary-icon {
    width: 48px !important;
    height: 48px !important;
    border-radius: 16px !important;
    margin-bottom: 14px !important;
  }

  .summary-strip .summary-icon svg {
    width: 25px !important;
    height: 25px !important;
  }
}


/* SMG_v239 — logo preloadera bez deformacji */
.site-preloader__logo {
  width: min(220px, 58vw) !important;
  height: auto !important;
  object-fit: contain !important;
}


/* SMG_v243 — stopka SMG4 i modal polityki prywatności */
.footer-simple {
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  padding: 26px clamp(18px, 3vw, 34px) 30px !important;
  text-align: left !important;
  color: var(--muted) !important;
  background:
    radial-gradient(circle at 92% 12%, rgba(255,196,0,0.08), transparent 24rem),
    linear-gradient(180deg, rgba(8,13,22,0.96), rgba(4,8,15,0.98)) !important;
}

.footer-simple-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.footer-simple-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  min-width: 0;
  font-size: 0.98rem;
  line-height: 1.45;
}

.footer-link {
  appearance: none;
  border: 1px solid rgba(255,196,0,0.34);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,196,0,0.16), rgba(255,196,0,0.055));
  color: var(--accent);
  padding: 10px 16px;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 0 22px rgba(255,196,0,0.10), inset 0 1px 0 rgba(255,255,255,0.12);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255,196,0,0.58);
  background:
    linear-gradient(180deg, rgba(255,196,0,0.22), rgba(255,196,0,0.08));
  outline: none;
}

.footer-copyright {
  color: #aeb7c5;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  max-width: min(220px, 42vw);
}

.footer-credit-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 42px);
}

.privacy-modal[aria-hidden="false"] {
  display: flex;
}

.privacy-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,196,0,0.10), transparent 28rem),
    rgba(2, 5, 10, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.privacy-modal__dialog {
  position: relative;
  width: min(780px, 100%);
  max-height: min(82vh, 780px);
  border: 1px solid rgba(255,196,0,0.24);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(15,22,34,0.98), rgba(5,10,18,0.98));
  box-shadow:
    0 28px 90px rgba(0,0,0,0.62),
    0 0 34px rgba(255,196,0,0.09);
  overflow: hidden;
}

.privacy-modal__content {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  max-height: min(82vh, 780px);
}

.privacy-modal__header {
  padding: clamp(22px, 4vw, 34px) clamp(22px, 4vw, 38px) 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.privacy-modal__eyebrow {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.privacy-modal__header h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.8rem, 4vw, 2.55rem);
  line-height: 1.05;
}

.privacy-modal__text {
  padding: 22px clamp(22px, 4vw, 38px);
  overflow: auto;
  color: #d9e0ea;
  font-size: 1rem;
  line-height: 1.72;
}

.privacy-modal__text p {
  margin: 0 0 16px;
}

.privacy-modal__text p:last-child {
  margin-bottom: 0;
}

.privacy-modal__text:focus {
  outline: 2px solid rgba(255,196,0,0.42);
  outline-offset: -6px;
}

.privacy-modal__actions {
  padding: 18px clamp(22px, 4vw, 38px) clamp(22px, 4vw, 34px);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: flex-end;
}

.privacy-modal__button {
  appearance: none;
  border: 1px solid rgba(255,196,0,0.52);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,196,0,0.95), rgba(213,154,0,0.92));
  color: #111923;
  padding: 12px 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(255,196,0,0.16);
}

.privacy-modal__button:hover,
.privacy-modal__button:focus-visible {
  outline: none;
  filter: brightness(1.06);
}

html.privacy-modal-open,
body.privacy-modal-open {
  overflow: hidden;
}

@media (max-width: 880px) {
  .footer-simple {
    padding: 24px 18px 28px !important;
  }

  .footer-simple-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .footer-simple-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-credit {
    justify-content: flex-start;
    max-width: min(210px, 70vw);
  }

  .privacy-modal {
    padding: 14px;
    align-items: flex-end;
  }

  .privacy-modal__dialog {
    width: 100%;
    max-height: 88vh;
    border-radius: 22px;
  }

  .privacy-modal__content {
    max-height: 88vh;
  }

  .privacy-modal__actions {
    justify-content: stretch;
  }

  .privacy-modal__button {
    width: 100%;
  }
}


/* SMG_v244 — niższy modal polityki prywatności na mobile */
@media (max-width: 880px) {
  .privacy-modal {
    align-items: center !important;
    padding: 12px !important;
  }

  .privacy-modal__dialog {
    max-height: 76vh !important;
    max-height: 76svh !important;
    border-radius: 20px !important;
  }

  .privacy-modal__content {
    max-height: 76vh !important;
    max-height: 76svh !important;
    grid-template-rows: auto minmax(0, 1fr) auto !important;
  }

  .privacy-modal__header {
    padding: 18px 20px 12px !important;
  }

  .privacy-modal__text {
    padding: 16px 20px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .privacy-modal__actions {
    padding: 12px 20px 18px !important;
  }
}

@media (max-width: 520px) {
  .privacy-modal__dialog,
  .privacy-modal__content {
    max-height: 72vh !important;
    max-height: 72svh !important;
  }

  .privacy-modal__header h2 {
    font-size: clamp(1.55rem, 7vw, 2rem) !important;
  }

  .privacy-modal__eyebrow {
    font-size: 0.76rem !important;
  }
}


/* SMG_v245 — animacja modala i zewnętrzny obrys przewijanej treści */
.privacy-modal {
  display: flex !important;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0s linear 0.46s;
}

.privacy-modal[aria-hidden="false"],
.privacy-modal.is-closing {
  visibility: visible;
}

.privacy-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.privacy-modal.is-closing {
  opacity: 0;
  pointer-events: none;
  transition-delay: 0s;
}

.privacy-modal__backdrop {
  opacity: 0;
  transition: opacity 0.32s ease;
}

.privacy-modal[aria-hidden="false"] .privacy-modal__backdrop {
  opacity: 1;
}

.privacy-modal.is-closing .privacy-modal__backdrop {
  opacity: 0;
}

.privacy-modal__dialog {
  opacity: 0;
  transform: translate3d(0, -110vh, 0);
  transition:
    transform 0.46s cubic-bezier(0.18, 0.84, 0.24, 1),
    opacity 0.28s ease;
  will-change: transform, opacity;
}

.privacy-modal[aria-hidden="false"] .privacy-modal__dialog {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.privacy-modal.is-closing .privacy-modal__dialog {
  opacity: 0;
  transform: translate3d(0, -110vh, 0);
  transition:
    transform 0.42s cubic-bezier(0.62, 0.02, 0.78, 0.36),
    opacity 0.24s ease;
}

/* Zewnętrzny obrys i boczny margines dla przewijanego kontenera treści */
.privacy-modal__text {
  margin-left: clamp(16px, 3vw, 30px) !important;
  margin-right: clamp(16px, 3vw, 30px) !important;
  padding: 18px clamp(18px, 3vw, 28px) !important;
  border: 1px solid rgba(255,196,0,0.28);
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(255,196,0,0.06),
    0 12px 30px rgba(0,0,0,0.18);
  background: rgba(3, 8, 16, 0.34);
}

.privacy-modal__text:focus {
  outline: none !important;
  border-color: rgba(255,196,0,0.58);
  box-shadow:
    0 0 0 2px rgba(255,196,0,0.18),
    0 12px 30px rgba(0,0,0,0.18);
}

@media (max-width: 880px) {
  .privacy-modal__text {
    margin-left: 14px !important;
    margin-right: 14px !important;
    padding: 14px 16px !important;
    border-radius: 16px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .privacy-modal,
  .privacy-modal__backdrop,
  .privacy-modal__dialog {
    transition: none !important;
  }

  .privacy-modal__dialog,
  .privacy-modal[aria-hidden="false"] .privacy-modal__dialog,
  .privacy-modal.is-closing .privacy-modal__dialog {
    transform: none !important;
  }
}


/* SMG_v246 — zabezpieczenie przed skokiem strony po zniknięciu paska scrolla */
html {
  scrollbar-gutter: stable;
}

/*
  Modal blokuje przewijanie tła, ale zostawia stabilny gutter paska scrolla.
  Dzięki temu strona i fixed header nie wykonują delikatnego ruchu w bok.
*/
html.privacy-modal-open {
  overflow-y: scroll !important;
}

body.privacy-modal-open {
  overflow: hidden !important;
  padding-right: var(--privacy-scrollbar-width, 0px) !important;
}

/* Fixed header też dostaje kompensację, bo nie dziedziczy układu body. */
html.privacy-modal-open .site-header {
  margin-right: var(--privacy-scrollbar-width, 0px) !important;
}

@supports (scrollbar-gutter: stable) {
  body.privacy-modal-open {
    padding-right: 0 !important;
  }

  html.privacy-modal-open .site-header {
    margin-right: 0 !important;
  }
}


/* SMG_v247 — pasek przewijania dopasowany do zaokrąglonego kontenera polityki */
.privacy-modal__text {
  scrollbar-width: thin;
  scrollbar-color: rgba(255,196,0,0.58) rgba(255,255,255,0.055);
  scrollbar-gutter: stable;
}

.privacy-modal__text::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.privacy-modal__text::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.055);
  border-radius: 999px;
  margin: 12px 4px;
}

.privacy-modal__text::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,210,56,0.88), rgba(180,127,0,0.82));
  border: 2px solid rgba(5,10,18,0.92);
  background-clip: padding-box;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.26);
}

.privacy-modal__text::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(180deg, rgba(255,223,92,0.96), rgba(205,151,10,0.92));
  border-color: rgba(5,10,18,0.96);
}

.privacy-modal__text::-webkit-scrollbar-corner {
  background: transparent;
}

@media (max-width: 880px) {
  .privacy-modal__text::-webkit-scrollbar {
    width: 8px;
  }

  .privacy-modal__text::-webkit-scrollbar-track {
    margin: 10px 3px;
  }
}


/* SMG_v248 — główny pasek przewijania strony dopasowany do stylistyki projektu */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(255,196,0,0.52) rgba(5,10,18,0.92);
}

html::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

html::-webkit-scrollbar-track {
  background:
    linear-gradient(180deg, rgba(5,10,18,0.98), rgba(9,14,24,0.98));
}

html::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,210,56,0.78), rgba(178,124,0,0.76));
  border: 3px solid rgba(5,10,18,0.98);
  background-clip: padding-box;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22);
}

html::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(180deg, rgba(255,223,92,0.92), rgba(205,151,10,0.88));
  border-color: rgba(5,10,18,1);
}

html::-webkit-scrollbar-corner {
  background: transparent;
}
