/* YANU — arkusz stylów
   Kolory marki pochodzą wprost z logotypu: granat #122233, pomarańcz #E86614.
   Kierunek wg punktu 15 briefu: przemysłowy, minimalistyczny, dużo bieli. */

:root {
  --navy: #122233;
  --navy-700: #1b3149;
  --navy-500: #2c4761;
  --orange: #e86614;
  --orange-dark: #cc560c;
  --ink: #16202b;
  --muted: #5c6a78;
  --line: #e3e8ed;
  --bg: #ffffff;
  --bg-soft: #f5f7f9;

  --wrap: 1200px;
  --radius: 4px;
  --shadow: 0 1px 2px rgba(18, 34, 51, .06), 0 8px 24px rgba(18, 34, 51, .08);

  --font-head: "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --step: clamp(3rem, 6vw, 5.5rem);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.15; margin: 0 0 .6em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin: 0 0 1.1em; }
a { color: var(--navy); text-decoration-color: rgba(232, 102, 20, .45); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--orange); }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0 0 1.1em; padding-left: 1.2em; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: .8rem 1.2rem;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

.section { padding-block: var(--step); }
.section--muted { background: var(--bg-soft); }
.section-lead { font-size: 1.15rem; color: var(--muted); max-width: 62ch; }

/* ---------------------------------- przyciski --------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem; letter-spacing: .01em;
  padding: .85rem 1.6rem; border: 2px solid transparent; border-radius: var(--radius);
  cursor: pointer; text-decoration: none; transition: background-color .18s, color .18s, border-color .18s, transform .18s;
}
.btn--primary { background: var(--orange); color: #fff; }
.btn--primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn--outline { border-color: currentColor; color: var(--navy); background: transparent; }
.btn--outline:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy); }
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1.05rem; }
.btn--sm { padding: .55rem 1rem; font-size: .9rem; }
.btn--block { width: 100%; }

.link-arrow { font-family: var(--font-head); font-weight: 600; color: var(--navy); text-decoration: none; }
.link-arrow::after { content: " →"; color: var(--orange); transition: margin-left .18s; display: inline-block; }
.link-arrow:hover::after { margin-left: .25rem; }

/* ----------------------------------- nagłówek --------------------------------- */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; gap: 1.5rem; min-height: 84px; }
.site-header__logo img { width: 160px; height: auto; }
.site-nav { margin-left: auto; }
.site-nav ul { display: flex; gap: 1.4rem; list-style: none; margin: 0; padding: 0; }
.site-nav a {
  font-family: var(--font-head); font-weight: 500; font-size: .96rem;
  text-decoration: none; color: var(--navy-500); padding-block: .4rem;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--navy); border-bottom-color: var(--orange); }
.site-header__actions { display: flex; align-items: center; gap: 1rem; }
.site-header__phone {
  font-family: var(--font-head); font-weight: 600; text-decoration: none;
  color: var(--navy); white-space: nowrap;
}
.site-header__burger { display: none; background: none; border: 0; padding: .6rem; cursor: pointer; }
.burger-bars { display: grid; gap: 5px; }
.burger-bars span { display: block; width: 26px; height: 2px; background: var(--navy); transition: transform .2s, opacity .2s; }
.site-header__burger[aria-expanded="true"] .burger-bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header__burger[aria-expanded="true"] .burger-bars span:nth-child(2) { opacity: 0; }
.site-header__burger[aria-expanded="true"] .burger-bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { border-top: 1px solid var(--line); background: #fff; }
.mobile-menu ul { list-style: none; margin: 0; padding: .5rem 1.25rem 1.25rem; }
.mobile-menu a {
  display: block; padding: .85rem 0; font-family: var(--font-head); font-weight: 500;
  text-decoration: none; border-bottom: 1px solid var(--line);
}

.mobile-bar { display: none; }

/* ------------------------------------ hero ------------------------------------ */

.hero { position: relative; color: #fff; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(18, 34, 51, .94) 0%, rgba(18, 34, 51, .78) 52%, rgba(18, 34, 51, .55) 100%);
}
.hero__content { padding-block: clamp(4.5rem, 11vw, 9rem); max-width: 56rem; }
.hero h1 { color: #fff; }
.hero__lead { font-size: clamp(1.1rem, 2vw, 1.35rem); color: rgba(255, 255, 255, .88); max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero .btn--outline { color: #fff; border-color: rgba(255, 255, 255, .6); }
.hero .btn--outline:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* pasek zaufania — pokazywany tylko wtedy, gdy właściciel wpisze konkrety */
.trust { background: var(--navy-700); color: #fff; }
.trust__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.trust__item {
  padding: 1.5rem 1.25rem; font-family: var(--font-head); font-weight: 500; font-size: 1rem;
  border-left: 1px solid rgba(255, 255, 255, .14);
}
.trust__item:first-child { border-left: 0; }

/* ----------------------------------- problem ---------------------------------- */

.problem { padding-block: var(--step); }
.problem__list {
  list-style: none; padding: 0; margin: 2.5rem 0 0;
  display: grid; gap: 1.75rem; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
}
.problem__list li { border-top: 3px solid var(--orange); padding-top: 1.1rem; }
.problem__list h3 { margin-bottom: .4rem; }
.problem__list p { color: var(--muted); margin: 0; font-size: .98rem; }
.problem__conclusion {
  margin-top: 2.5rem; font-size: 1.2rem; max-width: 60ch;
  padding-left: 1.25rem; border-left: 3px solid var(--navy);
}

/* ----------------------------------- obszary ---------------------------------- */

.areas { background: var(--bg-soft); padding-block: var(--step); }
.areas__grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); margin-top: 2.5rem; }
.area-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; }
.area-card h3 { font-size: 1.15rem; }
.area-card > p { color: var(--muted); font-size: .95rem; }
.area-card__list { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .45rem; }
.area-card__list a { font-size: .93rem; color: var(--navy-500); text-decoration: none; }
.area-card__list a:hover { color: var(--orange); }

/* ----------------------------------- katalog ---------------------------------- */

.catalog { padding-block: var(--step); }
.catalog__tabs {
  display: flex; gap: .5rem; overflow-x: auto; margin: 2rem 0 2.25rem;
  padding-bottom: .5rem; scrollbar-width: thin;
}
.catalog__tab {
  flex: 0 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 100px;
  padding: .6rem 1.2rem; font-family: var(--font-head); font-weight: 500; font-size: .93rem;
  color: var(--navy-500); cursor: pointer; white-space: nowrap; transition: all .18s;
}
.catalog__tab:hover { border-color: var(--navy); color: var(--navy); }
.catalog__tab[aria-selected="true"] { background: var(--navy); border-color: var(--navy); color: #fff; }
.catalog__more { margin-top: 1.75rem; }

.product-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}
.product-card__link {
  display: flex; flex-direction: column; height: 100%; text-decoration: none;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: #fff; transition: border-color .18s, box-shadow .18s, transform .18s;
}
.product-card__link:hover { border-color: var(--navy); box-shadow: var(--shadow); transform: translateY(-2px); }
.product-card__media { display: block; aspect-ratio: 4 / 3; background: var(--bg-soft); overflow: hidden; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; }
.product-card__placeholder {
  display: grid; place-items: center; height: 100%;
  font-family: var(--font-head); font-weight: 700; color: #c3ccd5; letter-spacing: .2em;
}
.product-card__body { display: block; padding: 1rem 1.1rem 1.2rem; }
.product-card__name { display: block; font-family: var(--font-head); font-weight: 600; color: var(--navy); }
.product-card__desc { display: block; margin-top: .35rem; font-size: .9rem; color: var(--muted); }

.empty-note { color: var(--muted); font-style: italic; }

/* ------------------------------- karta produktu ------------------------------- */

.product-detail { display: grid; gap: 2.5rem; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); align-items: start; }
.product-detail__media img { width: 100%; border: 1px solid var(--line); border-radius: var(--radius); }
.product-detail__placeholder {
  aspect-ratio: 4 / 3; display: grid; place-items: center; background: var(--bg-soft);
  font-family: var(--font-head); font-weight: 700; color: #c3ccd5; letter-spacing: .2em;
}
.product-detail__gallery { list-style: none; display: flex; gap: .6rem; padding: 0; margin: .75rem 0 0; }
.product-detail__gallery img { width: 84px; border: 1px solid var(--line); border-radius: var(--radius); }
.product-detail__category { font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.product-detail__category a { color: var(--orange); text-decoration: none; }
.product-detail__name { font-size: clamp(1.6rem, 3vw, 2.25rem); }
.product-detail__lead { font-size: 1.1rem; color: var(--muted); }
.product-detail__cta { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.product-detail__note { margin: .75rem 0 0; font-size: .9rem; color: var(--muted); }

/* -------------------------------- sekcja cenowa ------------------------------- */

.price-check { background: var(--navy); color: #fff; padding-block: var(--step); }
.price-check__inner { display: grid; gap: 3rem; grid-template-columns: minmax(0, 1fr) minmax(0, 480px); align-items: start; }
.price-check h2 { color: #fff; }
.price-check p { color: rgba(255, 255, 255, .85); }
.price-check__points { list-style: none; padding: 0; margin-top: 1.5rem; display: grid; gap: .7rem; }
.price-check__points li { padding-left: 1.75rem; position: relative; color: rgba(255, 255, 255, .92); font-size: .98rem; }
.price-check__points li::before {
  content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 700;
}
.price-check__form { background: #fff; border-radius: var(--radius); padding: 2rem; color: var(--ink); }

/* ------------------------------------ o mnie ---------------------------------- */

.about { padding-block: var(--step); }
.about__inner { display: grid; gap: 3.5rem; grid-template-columns: minmax(0, 420px) minmax(0, 1fr); align-items: start; }
.about__photo img { width: 100%; border-radius: var(--radius); background: var(--bg-soft); }
.about__lead { font-size: 1.2rem; }
.about__claim {
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 600; color: var(--navy);
  border-left: 3px solid var(--orange); padding-left: 1.1rem; margin: 2rem 0;
}

/* --------------------------------- pozostałe ---------------------------------- */

.industries-teaser { background: var(--bg-soft); padding-block: var(--step); }
.industries-teaser__grid { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.industry-chip {
  background: #fff; border: 1px solid var(--line); border-radius: 100px;
  padding: .7rem 1.35rem; text-decoration: none; font-family: var(--font-head);
  font-weight: 500; color: var(--navy); transition: all .18s;
}
.industry-chip:hover { border-color: var(--orange); color: var(--orange); }

.industry { padding-block: clamp(2.5rem, 5vw, 4rem); border-bottom: 1px solid var(--line); }
.industry__inner { display: grid; gap: 2.5rem; grid-template-columns: minmax(0, 1fr) minmax(0, 420px); align-items: start; }
.industry__needs { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.industry__needs li {
  background: var(--bg-soft); border-left: 3px solid var(--orange);
  padding: .8rem 1rem; font-size: .96rem;
}

.haccp-teaser { background: var(--navy-700); color: #fff; padding-block: var(--step); }
.haccp-teaser h2 { color: #fff; }
.haccp-teaser p { color: rgba(255, 255, 255, .85); max-width: 60ch; }
.haccp-teaser .link-arrow { color: #fff; }

.haccp-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); margin-top: 2.5rem; }
.haccp-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; position: relative; }
.haccp-card__num {
  font-family: var(--font-head); font-size: 2.5rem; font-weight: 700;
  color: #eef1f4; position: absolute; top: .75rem; right: 1.1rem; line-height: 1;
}
.haccp-card h2 { font-size: 1.15rem; position: relative; }
.haccp-card p { color: var(--muted); font-size: .95rem; margin: 0; }

.page-head { padding-block: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 3vw, 2.5rem); }
.page-head--slim { padding-bottom: 0; }
.breadcrumbs { font-size: .88rem; color: var(--muted); margin-bottom: 1.25rem; }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs span { margin-inline: .4rem; }
.page-banner { width: 100%; border-radius: var(--radius); margin-bottom: 2.5rem; }

.offer-group { padding-block: clamp(2rem, 4vw, 3.25rem); }
.offer-group:nth-child(even) { background: var(--bg-soft); }
.category-grid {
  list-style: none; padding: 0; margin: 2rem 0 0;
  display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
}
.category-card a {
  display: flex; flex-direction: column; height: 100%; text-decoration: none; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: all .18s;
}
.category-card a:hover { border-color: var(--navy); box-shadow: var(--shadow); transform: translateY(-2px); }
.category-card__media { aspect-ratio: 16 / 10; background: var(--bg-soft); }
.category-card__media img { width: 100%; height: 100%; object-fit: cover; }
.category-card__body { padding: 1.15rem 1.25rem 1.35rem; }
.category-card__name { display: block; font-family: var(--font-head); font-weight: 600; color: var(--navy); }
.category-card__desc { display: block; margin-top: .35rem; font-size: .9rem; color: var(--muted); }

.cta-band { background: var(--navy); color: #fff; padding-block: clamp(2.5rem, 5vw, 4rem); }
.cta-band__inner { display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; justify-content: space-between; }
.cta-band h2 { color: #fff; margin-bottom: .3em; }
.cta-band p { color: rgba(255, 255, 255, .82); margin: 0; }

.contact-section { padding-block: var(--step); }
.contact-section__inner { display: grid; gap: 3rem; grid-template-columns: minmax(0, 1fr) minmax(0, 520px); align-items: start; }
.contact-details { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 1.1rem; }
.contact-details__label {
  display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted);
}
.contact-details__value { font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; color: var(--navy); text-decoration: none; }
.contact-note { margin-top: 2.5rem; padding: 1.5rem; background: var(--bg-soft); border-radius: var(--radius); }
.contact-note h3 { font-size: 1rem; }
.contact-note ul { margin: 0; padding-left: 1.1rem; color: var(--muted); font-size: .95rem; }

.notice { background: #fff8f2; border-left: 3px solid var(--orange); padding: 1.25rem 1.5rem; margin-bottom: 2rem; border-radius: var(--radius); }
.notice p { margin: 0; font-size: .97rem; }
.notice--warn { background: #fff4f4; border-left-color: #c0392b; }

.rich-text { max-width: 70ch; }
.rich-text--wide { max-width: 78ch; }
.rich-text h2 { margin-top: 2rem; font-size: 1.35rem; }
.rich-text h3 { margin-top: 1.5rem; }
.rich-text ul, .rich-text ol { padding-left: 1.3rem; }
.rich-text li { margin-bottom: .4rem; }

/* ---------------------------------- formularze -------------------------------- */

.form__trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__heading { font-size: 1.25rem; margin-bottom: 1.25rem; }
.form__row { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.field { display: block; margin-bottom: 1rem; }
.field__label { display: block; font-size: .88rem; font-weight: 500; color: var(--navy-500); margin-bottom: .35rem; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  padding: .75rem .9rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; transition: border-color .18s, box-shadow .18s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--navy); box-shadow: 0 0 0 3px rgba(18, 34, 51, .08); outline: none;
}
.field textarea { resize: vertical; min-height: 7rem; }
.field--error input, .field--error textarea { border-color: #c0392b; }
.field__error { display: block; margin-top: .35rem; font-size: .85rem; color: #c0392b; }

.checkbox { display: flex; gap: .7rem; align-items: flex-start; font-size: .9rem; color: var(--muted); margin-block: 1rem; }
.checkbox input { margin-top: .25rem; width: 1.1rem; height: 1.1rem; flex: 0 0 auto; accent-color: var(--orange); }
.checkbox--error { color: #c0392b; }

.alert { padding: .9rem 1.1rem; border-radius: var(--radius); font-size: .95rem; margin-bottom: 1rem; }
.alert--ok { background: #eef8f1; border-left: 3px solid #2e8b57; color: #1d5636; }
.alert--error { background: #fdf0ef; border-left: 3px solid #c0392b; color: #8e2a1f; }

.form__note { font-size: .85rem; color: var(--muted); text-align: center; margin: .9rem 0 0; }

/* ------------------------------------ stopka ---------------------------------- */

.site-footer { background: var(--navy); color: rgba(255, 255, 255, .8); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; margin-top: 0; }
.site-footer__grid { display: grid; gap: 2.5rem; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); }
.site-footer__brand img { width: 150px; margin-bottom: 1.25rem; }
.site-footer__brand p { font-family: var(--font-head); font-weight: 600; color: #fff; margin-bottom: .75rem; }
.site-footer__desc { font-family: var(--font-body) !important; font-weight: 400 !important; color: rgba(255, 255, 255, .65) !important; font-size: .92rem; }
.site-footer__col h2 { font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; color: #fff; margin-bottom: 1rem; }
.site-footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.site-footer__col a { color: rgba(255, 255, 255, .8); text-decoration: none; font-size: .94rem; }
.site-footer__col a:hover { color: var(--orange); }
.site-footer__bottom {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .85rem;
  color: rgba(255, 255, 255, .55);
}
.site-footer__bottom p { margin: 0; }

/* ------------------------------------ modal ----------------------------------- */

.modal { position: fixed; inset: 0; z-index: 150; display: grid; place-items: center; padding: 1.5rem; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(18, 34, 51, .72); backdrop-filter: blur(3px); }
.modal__dialog {
  position: relative; background: #fff; border-radius: var(--radius);
  width: min(100%, 1000px); max-height: 88vh; overflow-y: auto; padding: 2.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}
.modal__close {
  position: absolute; top: .75rem; right: 1rem; background: none; border: 0;
  font-size: 2rem; line-height: 1; color: var(--muted); cursor: pointer; padding: .25rem .5rem;
}
.modal__close:hover { color: var(--navy); }

/* -------------------------------- baner cookie -------------------------------- */

.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 140; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -4px 20px rgba(18, 34, 51, .1); }
.cookie-banner[hidden] { display: none; }
.cookie-banner__inner {
  width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; padding: 1.1rem 0;
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
}
.cookie-banner p { margin: 0; font-size: .9rem; color: var(--muted); max-width: 62ch; }
.cookie-banner__actions { display: flex; gap: .6rem; }

/* ---------------------------------- responsywność ----------------------------- */

@media (max-width: 1000px) {
  .product-detail, .price-check__inner, .about__inner, .industry__inner, .contact-section__inner {
    grid-template-columns: 1fr;
  }
  .about__photo { max-width: 340px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .site-nav, .site-header__phone { display: none; }
  .site-header__burger { display: block; margin-left: auto; }
  .site-header__actions { display: none; }
  .site-header__inner { min-height: 68px; }
  .site-header__logo img { width: 130px; }

  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 130;
    background: var(--line); box-shadow: 0 -2px 16px rgba(18, 34, 51, .14);
  }
  .mobile-bar a {
    padding: 1rem; text-align: center; text-decoration: none;
    font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  }
  .mobile-bar__call { background: #fff; color: var(--navy); }
  .mobile-bar__cta { background: var(--orange); color: #fff; }

  body { padding-bottom: 60px; }
  .cookie-banner { bottom: 60px; }
}

@media (max-width: 620px) {
  .form__row { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .modal__dialog { padding: 1.75rem 1.25rem; }
  .trust__item { border-left: 0; border-top: 1px solid rgba(255, 255, 255, .14); }
  .trust__item:first-child { border-top: 0; }
  .price-check__form { padding: 1.5rem 1.25rem; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}

@media print {
  .site-header, .mobile-bar, .cookie-banner, .modal, .cta-band { display: none !important; }
}

/* Nagłówek bez zdjęcia — gradient marki zamiast przypadkowego stocku. */
.hero--plain {
  background:
    radial-gradient(1100px 520px at 12% -10%, rgba(232, 102, 20, .22), transparent 62%),
    linear-gradient(120deg, #0d1a27 0%, var(--navy) 46%, var(--navy-700) 100%);
}
.hero--plain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,.035) 0 2px, transparent 2px 22px);
}
.hero--plain .hero__content { position: relative; z-index: 1; }
