/* ============================================================
   STALOWO CNC — style.css
   ============================================================ */

:root {
  --orange:      #FC791D;
  --orange-dark: #d9620f;
  --orange-glow: rgba(252,121,29,.25);

  --bg:      #1a1d24;
  --bg-2:    #20232b;
  --bg-3:    #272b35;
  --border:  rgba(255,255,255,.08);
  --gray:    #9299a6;
  --light:   #e8eaf0;
  --white:   #ffffff;

  --font-head: 'Poppins', system-ui, -apple-system, Arial, sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, -apple-system, Arial, sans-serif;

  --nav-h:    70px;
  --r:        10px;
  --r-lg:     20px;
  --t:        220ms ease;
}

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }

/* ── Layout ──────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ── Typography helpers ──────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .85rem;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 1.1rem;
}
.section-desc { color: var(--gray); font-size: 1.05rem; max-width: 540px; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-tag { justify-content: center; }
.section-header .section-tag::before { display: none; }
.section-header .section-desc { margin: 0 auto; }

/* ── Logo ────────────────────────────────────────────── */
.nav__logo-img {
  height: 42px;
  width: auto;
  display: block;
}
.footer__logo-img {
  width: 220px;
  height: auto;
  display: block;
  margin-bottom: .75rem;
  mix-blend-mode: screen;
  filter: brightness(1.05);
}
/* kept for any legacy text fallback */
.logo-stalowo {
  font-family: var(--font-head);
  font-weight: 900; font-size: 1.25rem;
  color: var(--white); letter-spacing: .04em;
}
.logo-cnc {
  font-family: var(--font-head);
  font-weight: 900; font-size: 1.25rem;
  color: var(--orange); letter-spacing: .06em; margin-left: 3px;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  padding: .8rem 1.9rem; border-radius: var(--r);
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
}
.btn--primary {
  background: var(--orange); color: var(--white);
  box-shadow: 0 4px 20px rgba(252,121,29,.35);
}
.btn--primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 6px 28px rgba(252,121,29,.5);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.22);
}
.btn--ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn--sm   { padding: .55rem 1.3rem; font-size: .85rem; }
.btn--full { width: 100%; }

/* ── NAV ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; height: var(--nav-h);
  background: rgba(26,29,36,.92);
  backdrop-filter: blur(14px);
  transition: background var(--t), box-shadow var(--t);
}
.nav.scrolled {
  background: rgba(26,29,36,.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner { display: flex; align-items: center; height: 100%; gap: .75rem; }
.nav__logo  { margin-right: auto; }
.nav__links { display: flex; align-items: center; gap: .15rem; }
.nav__link {
  font-family: var(--font-head); font-size: .88rem; font-weight: 500;
  color: rgba(255,255,255,.7); padding: .5rem .9rem; border-radius: var(--r);
  transition: color var(--t), background var(--t);
}
.nav__link:hover, .nav__link.active { color: var(--white); }
.nav__link--cta {
  background: var(--orange); color: var(--white) !important;
  padding: .5rem 1.2rem;
  box-shadow: 0 2px 12px rgba(252,121,29,.3);
}
.nav__link--cta:hover { background: var(--orange-dark); }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform var(--t), opacity var(--t); }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
}
/* Photo background */
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('img/hero-pattern.jpg');
  background-size: cover;
  background-position: center;
}
.hero__bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(26,29,36,.95) 0%, rgba(26,29,36,.4) 18%, transparent 35%),
    linear-gradient(100deg, rgba(26,29,36,.96) 0%, rgba(26,29,36,.82) 50%, rgba(26,29,36,.55) 100%);
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 15% 60%, rgba(252,121,29,.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero__inner {
  position: relative; z-index: 1;
  display: block;
  width: 100%;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 4rem;
}
.hero__eyebrow {
  font-family: var(--font-head); font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: .6rem;
}
.hero__eyebrow::before {
  content: ''; display: inline-block;
  width: 28px; height: 2px; background: var(--orange); border-radius: 2px;
}
.hero__headline {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 900; line-height: 1.06;
  color: var(--white); margin-bottom: 1.5rem;
}
.hero__headline em {
  font-style: normal; color: var(--orange);
}
.hero__sub {
  font-size: 1.05rem; color: rgba(232,234,240,.6);
  margin-bottom: 2.5rem; line-height: 1.75; max-width: 460px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* Hero metallic logo */
.hero__logo-metallic {
  width: min(420px, 100%);
  height: auto;
  mix-blend-mode: screen;
  margin-bottom: .5rem;
  margin-left: -8px;
  filter: brightness(1.05);
}

/* Hero photo illustration */
.hero__visual {
  display: flex; align-items: center; justify-content: center;
}
.hero__img-wrap {
  position: relative; width: 100%; max-width: 520px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(252,121,29,.2);
}
.hero__photo {
  width: 100%; height: 420px;
  object-fit: cover; display: block;
}
.hero__img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(252,121,29,.08) 0%, rgba(26,29,36,.35) 100%);
  border-radius: var(--r-lg);
  pointer-events: none;
}

/* Floating badge */
.hero__badge {
  position: absolute;
  bottom: 10%; left: -5%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.4rem;
  display: flex; align-items: center; gap: .85rem;
  backdrop-filter: blur(10px);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.hero__badge-icon {
  width: 40px; height: 40px; background: var(--orange);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.hero__badge-text strong {
  display: block; font-family: var(--font-head); font-weight: 700;
  font-size: .9rem; color: var(--white);
}
.hero__badge-text span { font-size: .75rem; color: var(--gray); }

.hero__scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 1;
}
.hero__scroll-hint span {
  display: block; width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,.2); border-radius: 12px; position: relative;
}
.hero__scroll-hint span::after {
  content: ''; position: absolute;
  top: 5px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: var(--orange); border-radius: 2px;
  animation: scroll-dot 1.6s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%,100% { opacity: 1; top: 5px; }
  50%      { opacity: 0; top: 18px; }
}

/* ── STATS — orange banner ───────────────────────────── */
.stats {
  background: linear-gradient(135deg, #e86c10 0%, var(--orange) 50%, #fc8f3a 100%);
  padding: 2.75rem 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.stats__grid {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.stat { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 1rem; gap: .3rem; }
.stat__num {
  font-family: var(--font-head); font-size: 2rem; font-weight: 900;
  color: var(--white); line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.stat__label { font-size: .82rem; color: rgba(255,255,255,.8); letter-spacing: .03em; }
.stat__pills { display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; margin-bottom: .2rem; }
.stat__pill {
  font-family: var(--font-head); font-size: .78rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .3rem .75rem; border-radius: 99px;
  border: 1.5px solid rgba(255,255,255,.5);
  color: #fff;
}

/* ── SERVICES ────────────────────────────────────────── */
.services {
  padding: 7rem 0;
  background: var(--bg);
}
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.service-card__photo {
  position: relative;
  margin: -2.5rem -2.25rem 2rem;
  overflow: hidden;
  height: 200px;
}
.service-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s ease;
}
.service-card:hover .service-card__photo img {
  transform: scale(1.04);
}
.service-card__body {
  display: flex; flex-direction: column;
}
.service-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2.5rem 2.25rem;
  overflow: hidden;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
/* Top accent bar */
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(252,121,29,.4), transparent);
  transition: background var(--t);
}
.service-card:hover::before { background: linear-gradient(90deg, transparent, var(--orange), transparent); }
/* Glow blob */
.service-card::after {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(252,121,29,.12) 0%, transparent 70%);
  border-radius: 50%;
  transition: opacity var(--t);
  opacity: 0;
}
.service-card:hover::after { opacity: 1; }
.service-card:hover {
  border-color: rgba(252,121,29,.4);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.3), 0 0 0 1px rgba(252,121,29,.1);
}
.service-card--featured {
  border-color: var(--orange);
  background: linear-gradient(160deg, #252830 0%, var(--bg-2) 100%);
}
.service-card--featured::before { background: var(--orange); height: 3px; }
.service-card--featured:hover {
  box-shadow: 0 16px 48px rgba(252,121,29,.2), 0 0 0 1px rgba(252,121,29,.3);
}
.service-card__badge {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: var(--white);
  font-family: var(--font-head); font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .28rem 1rem; border-radius: 99px;
  box-shadow: 0 4px 12px rgba(252,121,29,.5);
  white-space: nowrap;
}
.service-card__icon {
  width: 58px; height: 58px;
  background: rgba(252,121,29,.1); border: 1px solid rgba(252,121,29,.2);
  border-radius: 14px; padding: 13px;
  color: var(--orange); margin-bottom: 1.5rem;
  transition: background var(--t), border-color var(--t);
}
.service-card:hover .service-card__icon {
  background: rgba(252,121,29,.18);
  border-color: rgba(252,121,29,.4);
}
.service-card__title {
  font-family: var(--font-head); font-size: 1.25rem; font-weight: 700;
  color: var(--white); margin-bottom: .75rem;
}
.service-card__desc { color: var(--gray); font-size: .93rem; line-height: 1.72; margin-bottom: 1.5rem; }
.service-card__features { display: flex; flex-direction: column; gap: .55rem; }
.service-card__features li {
  font-size: .875rem; color: rgba(232,234,240,.6);
  padding-left: 1.2rem; position: relative;
}
.service-card__features li::before {
  content: '';
  position: absolute; left: 0; top: .58em;
  width: 6px; height: 6px; background: var(--orange); border-radius: 50%;
}

/* Realizujemy m.in. */
.services__realizujemy {
  margin-top: 3.5rem;
  text-align: center;
}
.services__realizujemy-title {
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 700;
  color: var(--white); margin-bottom: 1.25rem;
}
.services__realizujemy-list {
  display: inline-flex; flex-direction: column; gap: .65rem;
  list-style: none; text-align: left;
}
.services__realizujemy-list li {
  font-size: .95rem; color: var(--light);
  padding-left: 1.75rem; position: relative;
}
.services__realizujemy-list li::before {
  content: '';
  position: absolute; left: 0; top: .35em;
  width: 14px; height: 14px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7' cy='7' r='7' fill='%23FC791D'/%3E%3Cpath d='M3.5 7 L6 9.5 L10.5 4.5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ── PROCESS ─────────────────────────────────────────── */
.process {
  padding: 7rem 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(252,121,29,.04) 0%, transparent 70%);
}
.process__grid {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
/* Connecting line */
.process__grid::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(12.5% + 36px); right: calc(12.5% + 36px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(252,121,29,.4) 20%, rgba(252,121,29,.4) 80%, transparent);
}
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.process-step__num {
  width: 72px; height: 72px;
  border: 2px solid rgba(252,121,29,.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 900;
  color: var(--orange);
  background: var(--bg-3);
  margin-bottom: 1.25rem;
  position: relative; z-index: 1;
  transition: background var(--t), border-color var(--t), box-shadow var(--t);
}
.process-step:hover .process-step__num {
  background: var(--orange); color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 0 24px rgba(252,121,29,.45);
}
.process-step__title {
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  color: var(--white); margin-bottom: .5rem;
}
.process-step__desc { font-size: .875rem; color: var(--gray); line-height: 1.6; }

/* ── ABOUT ───────────────────────────────────────────── */
.about {
  padding: 7rem 0;
  background: var(--bg);
}
.about__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
/* Industrial tech panel */
.about__visual { display: flex; align-items: center; justify-content: center; }
.about__panel {
  width: 100%; max-width: 420px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.about__panel-header {
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
  padding: .85rem 1.25rem;
  display: flex; align-items: center; gap: .5rem;
}
.about__panel-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.about__panel-dot:nth-child(1) { background: #ff5f57; }
.about__panel-dot:nth-child(2) { background: #febc2e; }
.about__panel-dot:nth-child(3) { background: #28c840; }
.about__panel-title {
  margin-left: .5rem;
  font-family: var(--font-head); font-size: .78rem; font-weight: 600;
  color: var(--gray); letter-spacing: .06em;
}
.about__panel-body { padding: 1.75rem; }
.about__spec-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: .875rem;
}
.about__spec-row:last-child { border-bottom: none; }
.about__spec-key { color: var(--gray); font-family: var(--font-head); font-size: .8rem; }
.about__spec-val { font-weight: 600; color: var(--white); font-family: var(--font-head); }
.about__spec-val.orange { color: var(--orange); }
.about__panel-bar { margin-top: 1.5rem; }
.about__panel-bar-label {
  display: flex; justify-content: space-between;
  font-size: .78rem; color: var(--gray); margin-bottom: .5rem;
  font-family: var(--font-head);
}
.about__panel-bar-track {
  height: 6px; background: var(--bg-3); border-radius: 3px; overflow: hidden;
}
.about__panel-bar-fill {
  height: 100%; background: linear-gradient(90deg, var(--orange-dark), var(--orange));
  border-radius: 3px; animation: bar-grow 2s ease forwards;
}
@keyframes bar-grow { from { width: 0; } }

.about__text p { color: rgba(232,234,240,.72); margin-bottom: 1rem; font-size: .975rem; }
.about__values { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.75rem 0 2rem; }
.value {
  display: flex; align-items: center; gap: .55rem;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 8px; padding: .55rem 1.1rem;
  font-family: var(--font-head); font-size: .875rem; font-weight: 600;
  color: var(--white); transition: border-color var(--t);
}
.value:hover { border-color: rgba(252,121,29,.4); }
.value__icon { color: var(--orange); font-size: .65rem; }

/* ── CALCULATOR ──────────────────────────────────────── */
.calc {
  padding: 7rem 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.calc::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(252,121,29,.05) 0%, transparent 65%);
  pointer-events: none;
}
.calc__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(min-content, 1fr) minmax(0, 1fr);
  gap: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.calc__inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-content: start;
  padding: 2.5rem;
}
.calc__full { grid-column: 1 / -1; }

.form-group select {
  width: 100%;
  background: var(--bg-2);
  border: 1.5px solid rgba(255,255,255,.09);
  border-radius: var(--r);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .95rem;
  padding: .8rem 2.5rem .8rem 1rem;
  transition: border-color var(--t), background var(--t);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' fill='none'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%239299a6' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
  background-color: rgba(252,121,29,.03);
}

.calc__result {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.5rem;
  background: var(--bg-3);
  border-left: 1px solid var(--border);
  min-width: 0;
}
.calc__result-panel {
  flex: 1;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.calc__result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.calc__result-row:last-child { border-bottom: none; }
.calc__result-label {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray);
  white-space: nowrap;
}
.calc__result-val {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  text-align: right;
}
.calc__result-val--orange { color: var(--orange); }
.calc__note {
  font-size: .78rem;
  color: var(--gray);
  line-height: 1.55;
}
.calc__label-hint {
  font-weight: 400;
  color: var(--gray);
  font-size: .8rem;
}
.calc__disclaimer {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-left: 3px solid rgba(252,121,29,.4);
  border-radius: var(--r);
  padding: .9rem 1rem;
}
.calc__disclaimer-icon {
  color: var(--orange);
  font-size: 1rem;
  line-height: 1.55;
  flex-shrink: 0;
}
.calc__disclaimer p {
  font-size: .75rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}
.calc__disclaimer strong {
  color: rgba(232,234,240,.6);
  font-weight: 600;
}

/* ── CONTACT ─────────────────────────────────────────── */
.contact {
  padding: 7rem 0;
  background: var(--bg-2);
}
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact__lead { color: var(--gray); margin-bottom: 2rem; font-size: 1rem; }
.contact__details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact__item {
  display: flex; align-items: flex-start; gap: 1rem;
  transition: color var(--t);
}
a.contact__item:hover { color: var(--orange); }
.contact__item-icon {
  width: 46px; height: 46px; min-width: 46px;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--orange); transition: background var(--t), border-color var(--t);
}
a.contact__item:hover .contact__item-icon { background: rgba(252,121,29,.15); border-color: rgba(252,121,29,.35); }
.contact__item-icon svg { width: 18px; height: 18px; }
.contact__item-label { display: block; font-size: .74rem; color: var(--gray); margin-bottom: .15rem; font-family: var(--font-head); letter-spacing: .06em; }
.contact__item-value { font-size: .975rem; color: var(--white); font-weight: 500; }

/* ── FORM ────────────────────────────────────────────── */
.contact__form-wrapper {
  background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.contact__form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .84rem; font-family: var(--font-head); font-weight: 600; color: rgba(232,234,240,.75); }
.form-group input, .form-group textarea {
  background: var(--bg-2); border: 1.5px solid rgba(255,255,255,.09);
  border-radius: var(--r); color: var(--white);
  font-family: var(--font-body); font-size: .95rem;
  padding: .8rem 1rem;
  transition: border-color var(--t), background var(--t);
  resize: vertical;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(146,153,166,.45); }
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--orange);
  background: rgba(252,121,29,.03);
}
.form-note { font-size: .8rem; color: var(--gray); }
.form-group input[type="file"] {
  padding: .6rem .8rem;
  cursor: pointer;
  color: rgba(232,234,240,.75);
}
.form-status { font-size: .88rem; font-family: var(--font-head); font-weight: 600; min-height: 1.4rem; }
.form-status.success { color: #4ade80; }
.form-status.error   { color: #f87171; }

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 3px solid var(--orange);
}
.footer__inner {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: start; gap: 3rem;
  padding: 3.5rem 28px;
}
.footer__brand .logo-stalowo, .footer__brand .logo-cnc { font-size: 1.1rem; }
.footer__brand p { margin-top: .65rem; font-size: .85rem; color: var(--gray); line-height: 1.55; }
.footer__nav { display: flex; flex-wrap: wrap; gap: .25rem 1.5rem; justify-content: center; padding-top: .25rem; }
.footer__nav a { font-size: .9rem; color: var(--gray); transition: color var(--t); }
.footer__nav a:hover { color: var(--orange); }
.footer__contact { display: flex; flex-direction: column; gap: .45rem; text-align: right; }
.footer__contact a, .footer__contact span { font-size: .875rem; color: var(--gray); transition: color var(--t); }
.footer__contact a:hover { color: var(--orange); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.05); padding: 1rem 0; text-align: center; font-size: .8rem; color: rgba(146,153,166,.45); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner        { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero__eyebrow      { justify-content: center; }
  .hero__sub          { margin-left: auto; margin-right: auto; }
  .hero__actions      { justify-content: center; }
  .hero__visual       { order: -1; }
  .hero__img-wrap     { max-width: 340px; }
  .hero__badge        { left: 50%; transform: translateX(-50%); bottom: -5%; }
  .process__grid      { grid-template-columns: repeat(2, 1fr); }
  .process__grid::before { display: none; }
}
@media (max-width: 900px) {
  .services__grid     { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .about__inner       { grid-template-columns: 1fr; gap: 3rem; }
  .contact__inner     { grid-template-columns: 1fr; gap: 3rem; }
  .footer__inner      { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .footer__contact    { text-align: center; }
  .calc__card         { grid-template-columns: 1fr; }
  .calc__result       { border-left: none; border-top: 1px solid var(--border); }
  .nav__burger        { display: flex; }
  .nav__links {
    position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 99;
    background: rgba(26,29,36,.98); backdrop-filter: blur(16px);
    flex-direction: column; padding: 1.5rem; gap: .25rem;
    transform: translateY(calc(-100% - var(--nav-h))); transition: transform var(--t);
    border-bottom: 1px solid var(--border);
  }
  .nav__links.open    { transform: translateY(0); }
  .nav__link          { width: 100%; text-align: center; padding: .9rem; }
  .nav__link--cta     { margin-top: .5rem; }
}
@media (max-width: 768px) {
  .stats__grid        { grid-template-columns: repeat(2, 1fr); }
  .hero__headline     { font-size: clamp(2.2rem, 10vw, 3rem); }
  .contact__form-wrapper { padding: 1.75rem; }
}
@media (max-width: 540px) {
  .process__grid      { grid-template-columns: 1fr; }
  .hero__actions      { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__badge        { display: none; }
  .calc__inputs       { grid-template-columns: 1fr; }
  .calc__full         { grid-column: 1; }
}

/* ── Cookie consent banner ───────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,.35);
}
.cookie-banner__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  min-width: 260px;
  font-size: .82rem;
  color: var(--gray);
  line-height: 1.55;
}
.cookie-banner__text strong {
  color: var(--light);
  font-weight: 500;
}
.cookie-banner__actions {
  display: flex;
  gap: .65rem;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; text-align: center; }
}
.cf-turnstile { margin-bottom: .75rem; }
