:root {
  --ink: #0d1017;
  --muted: #59616f;
  --line: #e4e9f1;
  --surface: #ffffff;
  --soft: #f5f7fb;
  --soft-2: #eef2f9;
  --brand: #e31f2a;
  --brand-dark: #b91620;
  --brand-glow: rgba(227, 31, 42, 0.45);
  --teal: #0f6b68;
  --blue: #175c8d;
  --dark: #080b10;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 26px 70px rgba(13, 18, 28, 0.16);
  --shadow-soft: 0 16px 40px rgba(13, 18, 28, 0.09);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  letter-spacing: -0.02em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--brand), #ff5a63);
  box-shadow: 0 0 14px var(--brand-glow);
}

/* Reveal-on-scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 58px;
  padding: 6px clamp(18px, 5vw, 70px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(221, 227, 236, 0.7);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  transition: min-height 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  min-height: 50px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(13, 18, 28, 0.08);
}

.header-left {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: min(150px, 38vw);
  height: auto;
  transition: transform 0.3s var(--ease);
}

.brand:hover img {
  transform: scale(1.03);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.6vw, 30px);
  color: #222936;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.28s var(--ease);
  content: "";
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px 9px 11px;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--brand), #ff4b54);
  border-radius: 999px;
  box-shadow: 0 8px 20px var(--brand-glow);
  letter-spacing: 0.01em;
  transition: transform 0.2s var(--ease), background 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  box-shadow: 0 12px 26px var(--brand-glow);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--ink);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #ffffff;
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 58px);
  display: grid;
  grid-template-columns: minmax(18px, 1fr) minmax(0, 1180px) minmax(18px, 1fr);
  overflow: hidden;
  color: #ffffff;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(110deg, rgba(8, 10, 15, 0.95) 0%, rgba(8, 10, 15, 0.86) 42%, rgba(8, 10, 15, 0.35) 78%),
    url("../img/hero-print-room.jpg") center / cover no-repeat;
  transform: scale(1.06);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  to {
    transform: scale(1.16);
  }
}

.hero__glow {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(640px circle at 14% 28%, rgba(227, 31, 42, 0.32), transparent 60%),
    radial-gradient(720px circle at 88% 84%, rgba(23, 92, 141, 0.32), transparent 62%);
  mix-blend-mode: screen;
  animation: glowFloat 12s ease-in-out infinite alternate;
}

@keyframes glowFloat {
  to {
    transform: translate3d(0, -24px, 0);
  }
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 30% 40%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 30% 40%, black, transparent 75%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  content: "";
  background: linear-gradient(0deg, rgba(8, 10, 15, 0.86), transparent);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  grid-column: 2;
  width: min(730px, 100%);
  align-self: center;
  padding: 70px 0 170px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--brand);
}

.section-kicker::before {
  width: 58px;
  height: 5px;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--brand), #ff7a82);
  box-shadow: 0 4px 18px var(--brand-glow);
  content: "";
}

.section-kicker::after {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(227, 31, 42, 0.16);
  content: "";
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  color: #ffe2e5;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 var(--brand-glow);
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--brand-glow);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(227, 31, 42, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(227, 31, 42, 0);
  }
}

.hero__logo {
  width: min(490px, 90vw);
  margin: 26px 0 0;
}

.hero__logo img {
  width: 100%;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45));
}

.hero__lead {
  margin: 30px 0 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.65;
}

/* Hero: wyrozniona informacja o tonerach (widoczna bez przewijania) */
.hero__highlight {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: 100%;
  margin: 24px 0 0;
  padding: 10px 24px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: linear-gradient(135deg, #e31f2a 0%, #ff4b54 100%);
  box-shadow: 0 16px 38px rgba(227, 31, 42, 0.45);
  color: #ffffff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.35;
}

.hero__highlight-text strong {
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}

.hero__highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  transition: transform 0.22s var(--ease), background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.button__icon {
  display: inline-flex;
}

.button__arrow {
  transition: transform 0.22s var(--ease);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button:hover .button__arrow {
  transform: translateX(4px);
}

.button--primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), #ff4b54);
  box-shadow: 0 16px 38px var(--brand-glow);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  box-shadow: 0 22px 48px var(--brand-glow);
}

.button--ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.14);
}

.hero__facts {
  position: absolute;
  right: max(18px, calc((100vw - 1180px) / 2));
  bottom: 36px;
  left: max(18px, calc((100vw - 1180px) / 2));
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.hero__facts div {
  position: relative;
  min-height: 116px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.3s ease;
}

.hero__facts div::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  content: "";
}

.hero__facts div:hover {
  background: rgba(255, 255, 255, 0.06);
}

.hero__facts div:hover::before {
  opacity: 1;
}

.hero__facts div:last-child {
  border-right: 0;
}

.hero__facts strong,
.hero__facts span {
  display: block;
}

.hero__facts strong {
  margin-bottom: 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.04rem;
}

.hero__facts span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

/* Sections */
.section {
  position: relative;
  padding: clamp(64px, 8vw, 116px) 0;
}

.section__inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section h2 {
  max-width: 860px;
  margin: 14px 0 0;
  font-size: clamp(2.05rem, 4.4vw, 3.7rem);
  line-height: 1.05;
}

.section p {
  margin: 0;
  color: var(--muted);
}

.section--lead {
  background: linear-gradient(180deg, var(--soft), #ffffff);
}

.section--service {
  background: linear-gradient(180deg, #ffffff, var(--soft));
}

.lead-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}

.lead-grid h2 {
  margin-top: 12px;
}

.lead-grid p {
  font-size: 1.08rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "title  kicker"
    "lead   kicker";
  column-gap: clamp(24px, 4vw, 56px);
  row-gap: 14px;
  align-items: start;
  margin-bottom: 44px;
}

.section-heading h2 {
  grid-area: title;
  margin-top: 0;
}

.section-heading > p {
  grid-area: lead;
  max-width: 760px;
  font-size: 1.06rem;
}

.section-heading .section-kicker {
  grid-area: kicker;
  justify-self: end;
  margin: 10px 0 0;
}

@media (max-width: 720px) {
  .section-heading {
    grid-template-columns: 1fr;
    grid-template-areas:
      "kicker"
      "title"
      "lead";
  }

  .section-heading .section-kicker {
    justify-self: start;
    margin: 0 0 4px;
    padding-left: 0;
    border-left: 0;
  }
}

/* Offer */
.offer-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: stretch;
}

.offer-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.feature-card {
  position: relative;
  flex: 1 1 auto;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

/* Featured "3D printers" offer card */
.offer-3d {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  padding: 20px 22px;
  border: 1px solid rgba(227, 31, 42, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(227, 31, 42, 0.08), rgba(255, 90, 99, 0.03));
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s ease;
}

.offer-3d:hover {
  transform: translateY(-4px);
  border-color: rgba(227, 31, 42, 0.5);
  box-shadow: 0 22px 48px rgba(227, 31, 42, 0.18);
}

.offer-3d__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), #ff5a63);
  border-radius: 16px;
  box-shadow: 0 10px 24px var(--brand-glow);
}

.offer-3d__body {
  min-width: 0;
}

.offer-3d__tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 10px;
  color: #ffffff;
  background: var(--brand);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-3d h3 {
  margin: 0 0 6px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.offer-3d p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.feature-card:hover img {
  transform: scale(1.05);
}

.feature-card__tags {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.feature-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(227, 31, 42, 0.92), rgba(255, 90, 99, 0.86));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 12px 26px rgba(227, 31, 42, 0.32);
}

.feature-card__tag svg {
  flex: 0 0 auto;
}

.feature-card__badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  background: rgba(13, 16, 23, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #ffffff;
}

.feature-card__badge strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: #ff5a63;
}

.feature-card__badge span {
  max-width: 150px;
  font-size: 0.85rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.85);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.offer-card {
  position: relative;
  overflow: hidden;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s ease;
}

.offer-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--brand), #ff5a63);
  transform: scaleY(0);
  transform-origin: 0 0;
  transition: transform 0.35s var(--ease);
  content: "";
}

.offer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(227, 31, 42, 0.3);
  box-shadow: 0 26px 56px rgba(13, 18, 28, 0.14);
}

.offer-card:hover::before {
  transform: scaleY(1);
}

.offer-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--blue);
  background: linear-gradient(135deg, rgba(23, 92, 141, 0.12), rgba(23, 92, 141, 0.04));
  border: 1px solid rgba(23, 92, 141, 0.18);
  border-radius: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.offer-card h3,
.production-panel strong {
  margin: 0 0 10px;
  font-size: 1.16rem;
  line-height: 1.28;
}

.offer-card p {
  font-size: 0.95rem;
}

/* Wyrozniona karta: tonery i materialy eksploatacyjne (na cala szerokosc) */
.offer-card--accent {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 18px;
  border-color: rgba(227, 31, 42, 0.35);
  background: linear-gradient(135deg, rgba(227, 31, 42, 0.07), #ffffff 60%);
}

.offer-card--accent > span {
  margin-bottom: 0;
}

.offer-card__body {
  min-width: 0;
}

.offer-card--accent::before {
  transform: scaleY(1);
}

.offer-card--accent > span {
  color: var(--brand);
  background: linear-gradient(135deg, rgba(227, 31, 42, 0.12), rgba(227, 31, 42, 0.04));
  border-color: rgba(227, 31, 42, 0.28);
}

/* Compact the Oferta section so it fits on one desktop (FHD) screen */
@media (min-width: 1081px) {
  #oferta {
    padding: clamp(30px, 3vw, 42px) 0;
  }

  #oferta .section-heading {
    row-gap: 10px;
    margin-bottom: 20px;
  }

  #oferta h2 {
    max-width: 760px;
    margin-top: 0;
    font-size: clamp(1.9rem, 2.6vw, 2.5rem);
    line-height: 1.06;
  }

  #oferta .section-heading > p {
    max-width: 720px;
    font-size: 1rem;
  }

  #oferta .feature-card img {
    min-height: 0;
  }

  #oferta .offer-grid {
    gap: 12px;
  }

  #oferta .offer-card {
    padding: 15px 18px;
  }

  #oferta .offer-card span {
    width: 34px;
    height: 34px;
    margin-bottom: 10px;
  }

  #oferta .offer-card h3 {
    margin-bottom: 6px;
    font-size: 1.02rem;
  }

  #oferta .offer-card p {
    font-size: 0.89rem;
    line-height: 1.42;
  }

  /* Karta 07 (tonery) na cala szerokosc - uklad poziomy, oszczedza wysokosc */
  #oferta .offer-card--accent {
    padding: 14px 18px;
  }

  #oferta .offer-card--accent h3 {
    margin-bottom: 3px;
  }
}

/* Production */
.section--production {
  color: #ffffff;
  background:
    radial-gradient(900px circle at 80% 0%, rgba(15, 107, 104, 0.5), transparent 60%),
    linear-gradient(135deg, rgba(8, 11, 16, 0.98), rgba(14, 77, 78, 0.92)),
    var(--dark);
}

.section--production .section-kicker {
  color: #9ff5ee;
}

.section--production .section-kicker::before {
  background: linear-gradient(90deg, #7ff0e8, #2bbcb1);
  box-shadow: 0 3px 14px rgba(127, 240, 232, 0.35);
}

.section--production .section-kicker::after {
  background: #7ff0e8;
  box-shadow: 0 0 0 4px rgba(127, 240, 232, 0.16);
}

.section--production p {
  color: rgba(255, 255, 255, 0.76);
}

.production-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}

.production-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.production-media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  content: "";
  pointer-events: none;
}

.production-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.production-media:hover img {
  transform: scale(1.05);
}

.production-copy {
  display: grid;
  gap: 22px;
}

.production-copy .section-kicker {
  justify-self: start;
}

.production-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.production-panel div {
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
}

.production-panel div:hover {
  background: rgba(255, 255, 255, 0.1);
}

.production-panel strong,
.production-panel span {
  display: block;
}

.production-panel span {
  color: rgba(255, 255, 255, 0.72);
}

/* Split */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.split--reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.split-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.split-media:hover img {
  transform: scale(1.05);
}

.split h2 {
  margin-bottom: 22px;
}

.split .section-kicker {
  display: inline-flex;
}

/* Serwis: wyrozniona deklaracja o trudnych usterkach */
.service-claim {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 22px !important;
  padding: 17px 20px;
  border: 1px solid rgba(227, 31, 42, 0.28);
  border-left: 3px solid var(--brand);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(227, 31, 42, 0.08), rgba(255, 90, 99, 0.02));
  color: #2a313e !important;
  font-weight: 600;
  line-height: 1.5;
}

.service-claim__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), #ff5a63);
  border-radius: 13px;
  box-shadow: 0 10px 22px var(--brand-glow);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 36px;
  color: #2a313e;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), #ff5a63);
  border-radius: 50%;
  content: "✓";
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 6px 14px var(--brand-glow);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.mini-grid div {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #ffffff, var(--soft));
  color: #202632;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  transition: transform 0.25s var(--ease), border-color 0.25s ease, box-shadow 0.25s ease;
}

.mini-grid div:hover {
  transform: translateY(-3px);
  border-color: rgba(23, 92, 141, 0.4);
  box-shadow: var(--shadow-soft);
}

/* Contact */
.section--contact {
  color: #ffffff;
  background:
    radial-gradient(800px circle at 10% 10%, rgba(23, 92, 141, 0.55), transparent 55%),
    linear-gradient(135deg, rgba(15, 107, 104, 0.96), rgba(23, 92, 141, 0.9)),
    var(--teal);
}

.section--contact .section-kicker {
  color: #e3f6f3;
}

.section--contact .section-kicker::before {
  background: linear-gradient(90deg, #d5f4f1, #8fd9d2);
  box-shadow: 0 3px 14px rgba(213, 244, 241, 0.3);
}

.section--contact .section-kicker::after {
  background: #d5f4f1;
  box-shadow: 0 0 0 4px rgba(213, 244, 241, 0.16);
}

.section--contact p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
}

.contact-card {
  position: relative;
  display: grid;
  gap: 24px;
  margin: 0;
  padding: clamp(30px, 3.6vw, 44px);
  color: var(--ink);
  background:
    radial-gradient(140% 125% at 50% 20%,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.9) 55%,
      rgba(255, 255, 255, 0.45) 84%,
      rgba(255, 255, 255, 0) 100%);
  border-radius: 28px;
  font-style: normal;
}

.contact-card::before {
  position: absolute;
  top: 0;
  left: clamp(20px, 8%, 48px);
  right: clamp(20px, 8%, 48px);
  height: 5px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, transparent, var(--brand) 28%, #ff7a82 72%, transparent);
  content: "";
}

.contact-card__head {
  display: grid;
  gap: 10px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(13, 18, 28, 0.1);
}

.contact-card__label {
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.42rem;
  line-height: 1.2;
  color: var(--ink);
}

.contact-card__addr {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #4a5260;
  font-size: 1rem;
}

.contact-card__addr svg {
  flex: 0 0 auto;
  color: var(--brand);
}

.contact-card__rows {
  display: grid;
  gap: 14px;
}

.contact-card__link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  text-decoration: none;
  transition: transform 0.22s var(--ease), background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.contact-card__link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(227, 31, 42, 0.45);
  box-shadow: 0 16px 34px rgba(6, 38, 44, 0.18);
}

.contact-card__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), #ff5a63);
  border-radius: 14px;
  box-shadow: 0 10px 22px var(--brand-glow);
}

.contact-card__meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.contact-card__cap {
  color: #7a8494;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card__val {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.contact-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  margin-left: auto;
  color: var(--brand);
  background: rgba(227, 31, 42, 0.08);
  border-radius: 50%;
  transition: transform 0.22s var(--ease), background 0.22s ease, color 0.22s ease;
}

.contact-card__link:hover .contact-card__arrow {
  transform: translateX(4px);
  color: #ffffff;
  background: var(--brand);
}

/* Brand footer */
.brand-footer {
  padding: 52px 0 48px;
  color: #ffffff;
  background:
    radial-gradient(700px circle at 50% 0%, rgba(23, 92, 141, 0.22), transparent 60%),
    #05070b;
}

.brand-footer__inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.brand-footer p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
  align-items: center;
}

.brand-logo {
  display: block;
  justify-self: center;
  width: 100%;
  max-width: 142px;
  max-height: 46px;
  object-fit: contain;
  transition: transform 0.3s var(--ease), filter 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
}

.brand-logo--konica {
  max-width: 116px;
  max-height: 60px;
}

.brand-logo--canon {
  max-width: 126px;
}

.brand-logo--hp,
.brand-logo--oce {
  max-width: 58px;
}

.brand-logo--contex {
  max-width: 126px;
}

.bottom-print-test {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  margin-top: 40px;
  padding: 14px 26px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), #ff4b54);
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 16px 38px var(--brand-glow);
  transition: transform 0.22s var(--ease), background 0.22s ease, box-shadow 0.22s ease;
}

.bottom-print-test:hover,
.bottom-print-test:focus-visible {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  box-shadow: 0 22px 48px var(--brand-glow);
}

/* Footer */
.site-footer {
  background: #05070b;
  color: rgba(255, 255, 255, 0.64);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 18px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 24px 0;
}

.site-footer span:first-child {
  font-family: "Space Grotesk", sans-serif;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-footer__meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.site-footer__year {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__version {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  color: #ffd1d4;
  background: rgba(227, 31, 42, 0.16);
  border: 1px solid rgba(227, 31, 42, 0.4);
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-footer__visits {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  font-size: 0.86rem;
  color: inherit;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s var(--ease);
}

.site-footer__visits:hover,
.site-footer__visits:focus-visible {
  background: rgba(227, 31, 42, 0.14);
  border-color: rgba(227, 31, 42, 0.4);
  transform: translateY(-1px);
}

.site-footer__visits svg {
  color: var(--brand);
}

.site-footer__visits strong {
  font-family: "Space Grotesk", sans-serif;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 1080px) {
  .site-header {
    flex-wrap: wrap;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-end;
  }

  .offer-layout,
  .production-grid,
  .split,
  .split--reverse,
  .lead-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-card img {
    min-height: 360px;
  }

  .brand-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 56px;
    flex-wrap: nowrap;
  }

  .brand img {
    width: 132px;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: auto;
    padding: 12px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
  }

  .site-nav.is-open {
    display: flex;
    animation: navDrop 0.28s var(--ease);
  }

  @keyframes navDrop {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
  }

  .site-nav a {
    padding: 12px;
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 4px;
    text-align: center;
  }

  .hero {
    min-height: 780px;
  }

  .hero__bg {
    background-position: 66% center;
  }

  .hero__content {
    padding: 46px 0 260px;
  }

  .hero__logo {
    width: min(330px, 90vw);
  }

  .hero__facts {
    grid-template-columns: 1fr;
  }

  .hero__facts div {
    min-height: auto;
    padding: 16px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero__facts div:last-child {
    border-bottom: 0;
  }

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

@media (max-width: 520px) {
  body {
    font-size: 15px;
  }

  .header-left {
    max-width: calc(100% - 54px);
  }

  .brand img {
    width: 118px;
  }

  .hero__actions {
    width: 100%;
  }

  .hero__actions .button {
    width: 100%;
  }

  .feature-card img {
    min-height: 270px;
  }

  .brand-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 24px;
  }

  .brand-logo {
    max-width: 132px;
    max-height: 42px;
  }

  .brand-logo--konica {
    max-width: 112px;
    max-height: 62px;
  }

  .brand-logo--hp,
  .brand-logo--oce {
    max-width: 54px;
  }

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