/*
Theme Name: Involt
Theme URI: https://involt.pl
Author: Involt
Description: Motyw Involt — dystrybutor kabli i osprzętu elektroenergetycznego
Version: 2.0
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

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

body {
  font-family: 'Inter', sans-serif;
  font-size: 16.5px;
  line-height: 1.7;
  color: #001335;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* CONTAINER */
.inv-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 900px) { .inv-container { padding: 0 32px; } }
@media (max-width: 600px) { .inv-container { padding: 0 20px; } }

/* =====================
   NAWIGACJA
   ===================== */
.inv-nav {
  background: #001335;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.inv-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.inv-nav__right {
  display: flex;
  align-items: center;
  gap: 0;
}
.inv-nav__logo {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #fff;
  text-transform: uppercase;
}
.inv-nav__logo span { color: #003DFF; }
.inv-nav__links {
  display: flex;
  gap: 24px;
  align-items: center;
  list-style: none;
}
.inv-nav__links a {
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #F4FAFF;
  font-weight: 500;
  transition: color 0.2s;
}
.inv-nav__links a:hover { color: #fff; }
.inv-nav__links .inv-nav__cta {
  background: #003DFF;
  color: #fff;
  padding: 9px 16px;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.2s;
}
.inv-nav__links .inv-nav__cta:hover { background: #0030cc; }
.inv-nav__hamburger {
  display: none;
  background: none;
  border: 0.5px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  padding: 8px 12px;
  cursor: pointer;
  color: #fff;
  font-size: 21px;
  line-height: 1;
}
.inv-nav__mobile {
  display: none;
  flex-direction: column;
  background: #001335;
  border-top: 0.5px solid rgba(255,255,255,0.08);
  padding: 16px 0;
}
.inv-nav__mobile.is-open { display: flex; }
.inv-nav__mobile a {
  font-size: 14.5px;
  color: #F4FAFF;
  padding: 12px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
  letter-spacing: 0.5px;
}
@media (max-width: 760px) {
  .inv-nav__links { display: none; }
  .inv-nav__hamburger { display: block; }
}

/* =====================
   HERO
   ===================== */
.inv-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 600px) { .inv-hero { min-height: 420px; } }
.inv-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.inv-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(0,10,30,0.92) 0%,
    rgba(0,10,30,0.78) 45%,
    rgba(0,10,30,0.30) 72%,
    rgba(0,10,30,0.05) 100%
  );
}
@media (max-width: 760px) {
  .inv-hero__overlay { background: rgba(0,10,30,0.78); }
}
.inv-hero__body {
  position: relative;
  z-index: 2;
  padding: 110px 0;
}
@media (max-width: 600px) { .inv-hero__body { padding: 48px 0 56px; } .inv-hero__content { padding: 0 20px; } }
.inv-hero__content { max-width: 540px; }
.inv-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #003DFF;
  border: 0.5px solid rgba(0,61,255,0.5);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 26px;
  font-weight: 600;
  background: rgba(0,10,30,0.4);
}
.inv-hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.06;
  margin-bottom: 22px;
  letter-spacing: -2px;
  color: #fff;
}
.inv-hero h1 em {
  font-style: normal;
  color: #003DFF;
}
.inv-hero__lead {
  font-size: 16.5px;
  color: #F4FAFF;
  line-height: 1.78;
  margin-bottom: 38px;
  max-width: 420px;
}
.inv-hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .inv-hero h1 { font-size: 33px; letter-spacing: -0.5px; }
  .inv-hero__btns { flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .inv-hero__btns .inv-btn { font-size: 14.5px; padding: 13px 18px; }
}

/* BUTTONS */
.inv-btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.inv-btn--primary { background: #003DFF; color: #fff; }
.inv-btn--primary:hover { background: #0030cc; }
.inv-btn--outline { background: transparent; color: #fff; border: 0.5px solid rgba(255,255,255,0.35); }
.inv-btn--outline:hover { border-color: #F4FAFF; }
.inv-btn--white { background: #fff; color: #003DFF; }
.inv-btn--white:hover { background: #F4FAFF; }

/* =====================
   STATS BAR
   ===================== */
.inv-stats {
  background: #001335;
  border-bottom: 2px solid #003DFF;
}
.inv-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 760px) { .inv-stats__grid { grid-template-columns: repeat(2, 1fr); } }
.inv-stats__item {
  padding: 28px 24px;
  border-right: 0.5px solid rgba(255,255,255,0.07);
}
@media (max-width: 600px) {
  .inv-stats__item { padding: 20px 16px; }
}
.inv-stats__item:last-child { border-right: none; }
@media (max-width: 760px) {
  .inv-stats__item:nth-child(2) { border-right: none; }
  .inv-stats__item:nth-child(3),
  .inv-stats__item:nth-child(4) { border-top: 0.5px solid rgba(255,255,255,0.07); }
}
.inv-stats__num {
  font-size: 29px;
  font-weight: 700;
  color: #003DFF;
  margin-bottom: 4px;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
@media (max-width: 900px) { .inv-stats__num { font-size: 23px; } }
@media (max-width: 600px) { .inv-stats__num { font-size: 19px; } }
.inv-stats__label {
  font-size: 13px;
  color: #F4FAFF;
  line-height: 1.4;
  word-break: break-word;
  hyphens: auto;
}

/* =====================
   SEKCJE
   ===================== */
.inv-section { padding: 80px 0; }
@media (max-width: 600px) { .inv-section { padding: 52px 0; } }
@media (max-width: 600px) { .inv-section { padding: 56px 0; } }
.inv-section--white { background: #ffffff; }
.inv-section--steel { background: #F4FAFF; }
.inv-section--dark { background: #001335; }

.inv-section__label {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #003DFF;
  margin-bottom: 10px;
  font-weight: 600;
}
.inv-section__title {
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
  color: #001335;
}
@media (max-width: 600px) { .inv-section__title { font-size: 22px; } }

/* =====================
   BRANŻE
   ===================== */
.inv-branches {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .inv-branches { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .inv-branches { grid-template-columns: 1fr; } }
.inv-branch {
  display: block;
  background: #fff;
  border: 1px solid #e2eaf5;
  border-radius: 8px;
  padding: 26px 22px;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.inv-branch:hover,
.inv-branch.is-active {
  border-color: #003DFF;
  box-shadow: 0 4px 20px rgba(0,61,255,0.09);
}
.inv-branch__icon {
  font-size: 29px;
  color: #003DFF;
  margin-bottom: 14px;
}
.inv-branch h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #001335;
}
.inv-branch p {
  font-size: 15.5px;
  color: #5a6a80;
  line-height: 1.6;
}

/* =====================
   OFERTA
   ===================== */
.inv-oferta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 640px) { .inv-oferta { grid-template-columns: 1fr; } }
.inv-oferta__card {
  background: #fff;
  border: 1px solid #e2eaf5;
  border-radius: 8px;
  padding: 30px 26px;
  transition: box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.inv-oferta__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #003DFF;
  opacity: 0;
  transition: opacity 0.2s;
}
.inv-oferta__card:hover::before { opacity: 1; }
.inv-oferta__card:hover { box-shadow: 0 6px 28px rgba(0,61,255,0.08); }
.inv-oferta__num {
  font-size: 13px;
  letter-spacing: 2px;
  color: #003DFF;
  margin-bottom: 14px;
  font-weight: 700;
  opacity: 0.55;
}
.inv-oferta__card h3 {
  font-size: 17.5px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #001335;
}
.inv-oferta__card p {
  font-size: 15.5px;
  color: #5a6a80;
  line-height: 1.72;
  margin-bottom: 20px;
}
.inv-oferta__link {
  font-size: 13px;
  color: #003DFF;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.inv-oferta__link:hover { text-decoration: underline; }

/* =====================
   PARTNERZY
   ===================== */
.inv-partners {
  background: #fff;
  border-top: 1px solid #e2eaf5;
  border-bottom: 1px solid #e2eaf5;
  padding: 52px 0;
}
.inv-partners__label {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9aaabb;
  text-align: center;
  margin-bottom: 32px;
  font-weight: 600;
}
.inv-partners__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
@media (max-width: 500px) { .inv-partners__logos { gap: 24px; } }
.inv-partners__logo {
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #b0bfcc;
  text-transform: uppercase;
  transition: color 0.2s;
}
.inv-partners__logo:hover { color: #001335; }

/* =====================
   DLACZEGO INVOLT
   ===================== */
.inv-why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 760px) { .inv-why { grid-template-columns: 1fr; gap: 36px; } }
.inv-why__list { display: flex; flex-direction: column; gap: 24px; }
.inv-why__item { display: flex; gap: 16px; align-items: flex-start; }
.inv-why__dot {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(0,61,255,0.07);
  border: 1px solid rgba(0,61,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #003DFF;
}
.inv-why__text h4 {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #001335;
}
.inv-why__text p {
  font-size: 15.5px;
  color: #5a6a80;
  line-height: 1.65;
}
.inv-why__visual {
  background: #001335;
  border-radius: 12px;
  padding: 48px 40px;
  text-align: center;
}
.inv-why__num {
  font-size: 68px;
  font-weight: 700;
  color: #003DFF;
  line-height: 1;
  letter-spacing: -3px;
}
.inv-why__num-label {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.inv-why__divider {
  width: 48px;
  height: 1px;
  background: rgba(0,61,255,0.35);
  margin: 28px auto;
}
.inv-why__num2 {
  font-size: 48px;
  font-weight: 700;
  color: rgba(0,61,255,0.55);
  letter-spacing: -2px;
}

/* =====================
   CTA
   ===================== */
.inv-cta {
  background: #003DFF;
  padding: 80px 0;
  text-align: center;
}
@media (max-width: 600px) { .inv-cta { padding: 60px 0; } }
.inv-cta h2 {
  font-size: 31px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.inv-cta p {
  font-size: 16.5px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
}
@media (max-width: 600px) { .inv-cta h2 { font-size: 25px; } }

/* =====================
   FOOTER
   ===================== */
.inv-footer {
  background: #001335;
  border-top: 0.5px solid rgba(255,255,255,0.08);
  padding: 40px 0;
}
.inv-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.inv-footer__logo {
  font-size: 17.5px;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}
.inv-footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  list-style: none;
}
.inv-footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}
.inv-footer__links a:hover { color: #F4FAFF; }

/* =====================
   PODSTRONY (page.php)
   ===================== */
.inv-page {
  padding: 80px 0;
  background: #fff;
  min-height: 60vh;
}
.inv-page h1 {
  font-size: 37px;
  font-weight: 700;
  color: #001335;
  margin-bottom: 32px;
  letter-spacing: -1px;
}
.inv-page__content {
  font-size: 16.5px;
  color: #3a4a5c;
  line-height: 1.8;
  max-width: 760px;
}
.inv-page__content h2 {
  font-size: 23px;
  font-weight: 700;
  color: #001335;
  margin: 40px 0 16px;
}
.inv-page__content h3 {
  font-size: 19px;
  font-weight: 600;
  color: #001335;
  margin: 32px 0 12px;
}
.inv-page__content p { margin-bottom: 16px; }
.inv-page__content ul, .inv-page__content ol {
  margin: 16px 0 16px 24px;
}
.inv-page__content li { margin-bottom: 8px; }
.inv-page__content a { color: #003DFF; text-decoration: underline; }

/* =====================
   FOOTER — rozbudowany
   ===================== */
.inv-footer {
  background: #001335;
  border-top: 0.5px solid rgba(255,255,255,0.08);
  padding: 64px 0 0;
}

.inv-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px) {
  .inv-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 500px) {
  .inv-footer__grid { grid-template-columns: 1fr; gap: 28px; }
}

/* Brand column */
.inv-footer__col--brand { text-align: left; }
.inv-footer__address {
  font-size: 14.5px;
  color: #F4FAFF;
  line-height: 1.8;
  font-style: normal;
  margin-bottom: 16px;
}
.inv-footer__contact { display: flex; flex-direction: column; gap: 10px; }
.inv-footer__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  color: #F4FAFF;
  transition: color 0.2s;
}
.inv-footer__contact-link:hover { color: #003DFF; }

/* Nav columns */
.inv-footer__col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.inv-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.inv-footer__links a {
  font-size: 14.5px;
  color: #F4FAFF;
  transition: color 0.2s;
}
.inv-footer__links a:hover { color: #fff; }

/* Bottom bar */
.inv-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
}
.inv-footer__copy {
  font-size: 14px;
  color: rgba(255,255,255,0.25);
}
.inv-footer__bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.inv-footer__bottom-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}
.inv-footer__bottom-links a:hover { color: #F4FAFF; }

/* Logo size fix */
.inv-nav__logo img,

/* Ikona maila */
.inv-footer__contact-link svg { width: 16px !important; height: 16px !important; }

/* Logo alignment */
.inv-nav__logo { justify-content: flex-start !important; text-align: left !important; }
.inv-nav__logo img { margin-left: 0 !important; }
.inv-footer__col--brand { text-align: left !important; }

/* =====================
   KARIERA — HERO
   ===================== */
.inv-career-hero {
  position: relative;
  padding: 90px 0 110px;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: center;
}
@media (max-width: 600px) { .inv-career-hero { min-height: 380px; padding: 64px 0 80px; } }
.inv-career-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.inv-career-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(0,19,53,0.93) 0%,
    rgba(0,19,53,0.80) 45%,
    rgba(0,19,53,0.35) 75%,
    rgba(0,19,53,0.10) 100%
  );
}
@media (max-width: 760px) {
  .inv-career-hero__overlay { background: rgba(0,19,53,0.82); }
}
.inv-career-hero__card {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.inv-career-hero h1 {
  font-size: 39px;
  font-weight: 700;
  color: #fff;
  margin: 8px 0 20px;
  letter-spacing: -1px;
}
@media (max-width: 600px) { .inv-career-hero h1 { font-size: 29px; } }
.inv-career-hero__text {
  font-size: 15.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* =====================
   KARIERA — LISTA OFERT
   ===================== */
.inv-job-list { display: flex; flex-direction: column; gap: 12px; }
.inv-job-item {
  border: 1px solid #e2eaf5;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.inv-job-item__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #003DFF;
  color: #fff;
  border: none;
  padding: 18px 24px;
  font-size: 15.5px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.inv-job-item__header:hover { background: #0030cc; }
.inv-job-item__arrow { transition: transform 0.25s; flex-shrink: 0; margin-left: 16px; }
.inv-job-item.is-open .inv-job-item__arrow { transform: rotate(180deg); }

.inv-job-item__body {
  display: none;
  padding: 28px 24px;
}
.inv-job-item.is-open .inv-job-item__body { display: block; }
.inv-job-item__body h4 {
  font-size: 14.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #001335;
  margin: 20px 0 10px;
}
.inv-job-item__body h4:first-child { margin-top: 0; }
.inv-job-item__body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 4px;
}
.inv-job-item__body li {
  font-size: 14.5px;
  color: #5a6a80;
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}
.inv-job-item__body li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #003DFF;
}
.inv-job-item__body .inv-btn { margin-top: 24px; }

/* =====================
   KARIERA — FORMULARZ
   ===================== */
.inv-form { max-width: 800px; }
.inv-form__section-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #003DFF;
  margin: 32px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #dbe4f3;
}
.inv-form__section-title:first-child { margin-top: 0; }
.inv-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) { .inv-form__grid { grid-template-columns: 1fr; } }
.inv-form__group { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.inv-form__group--full { grid-column: 1 / -1; margin-top: 20px; }
.inv-form__label {
  font-size: 14px;
  font-weight: 600;
  color: #001335;
}
.inv-form__input,
.inv-form__textarea {
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  color: #001335;
  background: #fff;
  border: 1px solid #cfdcef;
  border-radius: 6px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
select.inv-form__input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a6a80' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 38px;
  /* Bez tego <select> ignoruje width:100% rodzica, bo jego min-width
     domyślnie liczy się z najdłuższej opcji na liście (nazwy ofert pracy) */
  min-width: 0;
}
.inv-form__input:focus,
.inv-form__textarea:focus { border-color: #003DFF; }
.inv-form__textarea { resize: vertical; }
.inv-form__file {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: #5a6a80;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.inv-form__checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #5a6a80;
  line-height: 1.6;
  cursor: pointer;
}
.inv-form__checkbox-row input { margin-top: 3px; accent-color: #003DFF; flex-shrink: 0; }
.inv-form__checkbox-row a { color: #003DFF; text-decoration: underline; }

/* Meta tags w ofercie pracy */
.inv-job-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.inv-job-item__meta-tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #003DFF;
  background: rgba(0,61,255,0.07);
  border: 1px solid rgba(0,61,255,0.18);
  border-radius: 4px;
  padding: 6px 12px;
}
.inv-job-item__meta-tag--salary {
  color: #001335;
  background: #F4FAFF;
  border-color: #cfdcef;
  font-weight: 700;
}

/* =====================
   UNIWERSALNY HERO PODSTRON
   ===================== */
.inv-page-hero {
  position: relative;
  background: linear-gradient(135deg, #001335 0%, #00204f 100%);
  padding: 80px 0 90px;
  overflow: hidden;
}
.inv-page-hero::before {
  content: '';
  position: absolute;
  right: -10%; top: -30%;
  width: 55%; height: 160%;
  background: radial-gradient(ellipse at center, rgba(0,61,255,0.18) 0%, transparent 70%);
}
.inv-page-hero__card {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.inv-page-hero h1 {
  font-size: 39px;
  font-weight: 700;
  color: #fff;
  margin: 8px 0 16px;
  letter-spacing: -1px;
}
@media (max-width: 600px) { .inv-page-hero h1 { font-size: 29px; } }
.inv-page-hero__text {
  font-size: 15.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

/* =====================
   KONTAKT — KARTY
   ===================== */
.inv-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 860px) { .inv-contact-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .inv-contact-grid { grid-template-columns: 1fr; } }
.inv-contact-card {
  background: #fff;
  border: 1px solid #e2eaf5;
  border-radius: 8px;
  padding: 24px 22px;
}
.inv-contact-card__icon { margin-bottom: 14px; }
.inv-contact-card h3 {
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #001335;
  margin-bottom: 8px;
}
.inv-contact-card p {
  font-size: 14.5px;
  color: #5a6a80;
  line-height: 1.7;
}
.inv-contact-card a { color: #003DFF; text-decoration: none; }
.inv-contact-card a:hover { text-decoration: underline; }

/* =====================
   KONTAKT — RACHUNKI BANKOWE
   ===================== */
.inv-contact-bank {
  background: #F4FAFF;
  border: 1px solid #e2eaf5;
  border-radius: 8px;
  padding: 22px 24px;
  margin-bottom: 32px;
}
.inv-contact-bank h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #003DFF;
  margin-bottom: 14px;
}
.inv-contact-bank__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 600px) { .inv-contact-bank__grid { grid-template-columns: 1fr; } }
.inv-contact-bank__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: #001335;
}
.inv-contact-bank__currency {
  font-weight: 700;
  background: #003DFF;
  color: #fff;
  font-size: 13px;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.inv-contact-bank__number { color: #5a6a80; }

/* =====================
   KONTAKT — MAPA
   ===================== */
.inv-contact-map {
  width: 100%;
  height: 360px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e2eaf5;
}
@media (max-width: 600px) { .inv-contact-map { height: 260px; } }

/* Hint pod polem formularza */
.inv-form__hint {
  font-size: 13px;
  color: #9aaabb;
  margin-top: 4px;
}

/* =====================
   FIRMA — zdjęcie + bloki info
   ===================== */
.inv-firma-image {
  width: 100%;
  height: 360px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
}
@media (max-width: 600px) { .inv-firma-image { height: 220px; } }
.inv-firma-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.inv-info-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 80px;
}
@media (max-width: 600px) { .inv-info-blocks { margin-top: 56px; } }
@media (max-width: 760px) { .inv-info-blocks { grid-template-columns: 1fr; } }
.inv-info-block {
  background: #F4FAFF;
  border: 1px solid #e2eaf5;
  border-radius: 8px;
  padding: 28px 26px;
}
.inv-info-block h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #003DFF;
  margin-bottom: 12px;
}
.inv-info-block p {
  font-size: 16.5px;
  color: #5a6a80;
  line-height: 1.8;
}

/* =====================
   FIRMA — karty marek grupy
   ===================== */
.inv-brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 760px) { .inv-brand-grid { grid-template-columns: 1fr; } }
.inv-brand-card {
  display: block;
  background: #fff;
  border: 1px solid #e2eaf5;
  border-radius: 8px;
  padding: 28px 24px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.inv-brand-card:hover {
  border-color: #003DFF;
  box-shadow: 0 6px 24px rgba(0,61,255,0.08);
}
.inv-brand-card__logo {
  height: 64px;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.inv-brand-card__logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.inv-brand-card p {
  font-size: 14.5px;
  color: #5a6a80;
  line-height: 1.7;
}

/* Akcentowany paragraf w hero (np. pozycjonowanie "integrator") */
.inv-page-hero__text--accent {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-style: italic;
  color: rgba(255,255,255,0.8);
}

/* =====================
   FIRMA — siatka sektorów
   ===================== */
.inv-firma-sectors__lead {
  font-size: 15.5px;
  color: #5a6a80;
  margin: -24px 0 32px;
  max-width: 600px;
}
.inv-firma-sectors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 860px) { .inv-firma-sectors { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .inv-firma-sectors { grid-template-columns: 1fr; } }
.inv-firma-sector {
  background: linear-gradient(135deg, #001335 0%, #00204f 100%);
  border-radius: 10px;
  padding: 36px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.inv-firma-sector__icon {
  font-size: 33px;
  color: #003DFF;
}
.inv-firma-sector span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
}

/* =====================
   FIRMA — Wizja / Misja / Wartości (karty)
   ===================== */
.inv-vmw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 860px) { .inv-vmw-grid { grid-template-columns: 1fr; } }

.inv-vmw-card {
  background: #fff;
  border: 1px solid #e2eaf5;
  border-radius: 8px;
  padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.inv-vmw-card:hover {
  border-color: #003DFF;
  box-shadow: 0 6px 24px rgba(0,61,255,0.08);
}
.inv-vmw-card__icon {
  height: 32px;
  display: flex;
  align-items: center;
  font-size: 29px;
  color: #003DFF;
  margin-bottom: 18px;
}
.inv-vmw-card h3 {
  font-size: 17.5px;
  font-weight: 700;
  color: #001335;
  margin-bottom: 10px;
}
.inv-vmw-card p {
  font-size: 14.5px;
  color: #5a6a80;
  line-height: 1.7;
}
.inv-vmw-card__list {
  list-style: none;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.inv-vmw-card__list li {
  font-size: 14.5px;
  color: #001335;
  font-weight: 600;
  padding-left: 16px;
  position: relative;
}
.inv-vmw-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #003DFF;
}
.inv-vmw-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.inv-vmw-card__tags span {
  font-size: 13px;
  font-weight: 600;
  color: #003DFF;
  background: rgba(0,61,255,0.07);
  border: 1px solid rgba(0,61,255,0.18);
  border-radius: 4px;
  padding: 5px 10px;
}

/* =====================
   ZESPÓŁ — struktura
   ===================== */
.inv-team-dept {
  margin-bottom: 36px;
}
.inv-team-dept:last-child { margin-bottom: 0; }
.inv-team-dept__title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #003DFF;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2eaf5;
}
.inv-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 960px) { .inv-team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .inv-team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .inv-team-grid { grid-template-columns: 1fr; } }
.inv-team-card {
  background: linear-gradient(135deg, #001335 0%, #00204f 100%);
  border-radius: 6px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.inv-team-card__name {
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
}
.inv-team-card__role {
  font-size: 13px;
  color: rgba(244,250,255,0.55);
  line-height: 1.4;
}

/* =====================
   ZESPÓŁ — kontakt do działów
   ===================== */
.inv-dept-emails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 760px) { .inv-dept-emails { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .inv-dept-emails { grid-template-columns: 1fr; } }
.inv-dept-email-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #fff;
  border: 1px solid #e2eaf5;
  border-radius: 8px;
  padding: 20px 22px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.inv-dept-email-card:hover {
  border-color: #003DFF;
  box-shadow: 0 6px 24px rgba(0,61,255,0.08);
}
.inv-dept-email-card__label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #001335;
}
.inv-dept-email-card__mail {
  font-size: 14.5px;
  color: #003DFF;
}

/* =====================
   REALIZACJE — case studies
   ===================== */
.inv-case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 860px) { .inv-case-grid { grid-template-columns: 1fr; } }

.inv-case-card {
  background: #fff;
  border: 1px solid #e2eaf5;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.inv-case-card:hover {
  border-color: #003DFF;
  box-shadow: 0 6px 24px rgba(0,61,255,0.08);
}
.inv-case-card__banner {
  height: 140px;
  background: linear-gradient(135deg, #001335 0%, #00204f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.inv-case-card__banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,19,53,0.75) 0%, rgba(0,32,79,0.45) 100%);
}
.inv-case-card__banner i {
  font-size: 48px;
  color: #003DFF;
  position: relative;
  z-index: 1;
}
.inv-case-card__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}
.inv-case-card__tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #003DFF;
  background: rgba(0,61,255,0.07);
  border: 1px solid rgba(0,61,255,0.18);
  border-radius: 4px;
  padding: 4px 10px;
  margin: 24px 24px 12px;
}
.inv-case-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #001335;
  margin: 0 24px 16px;
  line-height: 1.35;
}
.inv-case-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.inv-case-card__stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 24px 16px;
}
.inv-case-stat {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eef3fa;
}
.inv-case-stat:last-child { border-bottom: none; padding-bottom: 0; }
.inv-case-stat span {
  color: #9aaabb;
  flex-shrink: 0;
}
.inv-case-stat strong {
  color: #001335;
  font-weight: 600;
  text-align: right;
}
.inv-case-card__quote {
  background: #F4FAFF;
  border-left: 3px solid #003DFF;
  border-radius: 0 6px 6px 0;
  padding: 16px 18px;
  margin: auto 24px 24px;
  font-size: 14.5px;
  font-style: italic;
  color: #5a6a80;
  line-height: 1.7;
}
.inv-case-card__quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
  color: #001335;
}
.inv-case-card__quote cite span {
  display: block;
  font-weight: 400;
  font-size: 13px;
  color: #9aaabb;
  margin-top: 2px;
}
.inv-case-card__quote cite + cite { margin-top: 10px; }

.inv-case-card__stats:last-child { margin-bottom: 24px; margin-top: auto; }
.inv-case-card__stats:first-child:last-child { margin-top: 0; }

/* =====================
   OWS — layout
   ===================== */
.inv-ows-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 860px) { .inv-ows-layout { grid-template-columns: 1fr; } }

/* Boczna nawigacja */
.inv-ows-nav {
  position: sticky;
  top: 100px;
  background: #F4FAFF;
  border: 1px solid #e2eaf5;
  border-radius: 8px;
  padding: 20px;
}
@media (max-width: 860px) { .inv-ows-nav { position: static; } }
.inv-ows-nav__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #003DFF;
  margin-bottom: 12px;
}
.inv-ows-nav ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.inv-ows-nav a {
  font-size: 14px;
  color: #5a6a80;
  text-decoration: none;
  display: block;
  padding: 6px 8px;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
  line-height: 1.4;
}
.inv-ows-nav a:hover { background: rgba(0,61,255,0.07); color: #003DFF; }

/* Intro */
.inv-ows-intro {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 2px solid #e2eaf5;
  color: #5a6a80;
  font-size: 15.5px;
}
.inv-ows-intro strong {
  display: block;
  font-size: 19px;
  font-weight: 700;
  color: #001335;
  margin-top: 4px;
}

/* Sekcje */
.inv-ows-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #e2eaf5;
}
.inv-ows-section:last-of-type { border-bottom: none; }
.inv-ows-section h2 {
  font-size: 17.5px;
  font-weight: 700;
  color: #001335;
  margin-bottom: 20px;
  padding: 10px 16px;
  background: #F4FAFF;
  border-left: 3px solid #003DFF;
  border-radius: 0 6px 6px 0;
}
.inv-ows-section ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.inv-ows-section li {
  font-size: 14.5px;
  color: #5a6a80;
  line-height: 1.75;
}
.inv-ows-section li strong { color: #001335; }
.inv-ows-section li a { color: #003DFF; }
.inv-ows-alpha {
  list-style: lower-alpha !important;
  padding-left: 20px !important;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Footer */
.inv-ows-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e2eaf5;
  font-size: 14.5px;
  font-weight: 600;
  color: #001335;
}

/* =====================
   OFERTA — przewagi w stats barze
   ===================== */
.inv-oferta-przewagi .inv-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.inv-oferta-przewagi__icon {
  font-size: 25px;
  color: #003DFF;
}
.inv-oferta-przewagi .inv-stats__label {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  color: #F4FAFF;
}

/* =====================
   OFERTA — siatka kategorii produktów
   ===================== */
.inv-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 960px) { .inv-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .inv-product-grid { grid-template-columns: 1fr; } }

.inv-product-card {
  background: #fff;
  border: 1px solid #e2eaf5;
  border-radius: 8px;
  padding: 22px 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.inv-product-card:hover {
  border-color: #003DFF;
  box-shadow: 0 6px 24px rgba(0,61,255,0.08);
}
.inv-product-card__header {
  background: #001335;
  margin: -22px -20px 14px;
  padding: 18px 20px 16px;
  position: relative;
  overflow: hidden;
}
.inv-product-card__num {
  position: absolute;
  top: 4px;
  right: 10px;
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  opacity: 0.35;
  line-height: 1;
  pointer-events: none;
}
.inv-product-card__header h3 {
  font-size: 14.5px;
  font-weight: 600;
  color: #F4FAFF;
  line-height: 1.35;
  position: relative;
  z-index: 1;
  margin: 0;
}
.inv-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.inv-product-tags span {
  font-size: 13px;
  font-weight: 500;
  color: #5a6a80;
  background: #F4FAFF;
  border: 1px solid #dbe4f3;
  border-radius: 4px;
  padding: 4px 10px;
  line-height: 1.4;
}

/* Przycisk outline biały w hero */
.inv-btn--outline-white {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  background: transparent;
  transition: background 0.2s, border-color 0.2s;
}
.inv-btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

/* CTA — dane kontaktowe pod przyciskiem */
.inv-cta__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.inv-cta__contact-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.inv-cta__contact-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.inv-cta__contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15.5px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.15s;
}
.inv-cta__contact a:hover { opacity: 1; }



/* =====================
   POP-UP: Zapytaj o ofertę
   ===================== */
.inv-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.inv-popup.is-open { display: flex; }

.inv-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,19,53,0.7);
  backdrop-filter: blur(3px);
}
.inv-popup__box {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
@media (max-width: 600px) { .inv-popup__box { padding: 24px; } }

.inv-popup__close {
  position: absolute;
  top: 16px; right: 16px;
  background: none; border: none; cursor: pointer;
  color: #9aaabb; padding: 4px;
  transition: color 0.15s;
}
.inv-popup__close:hover { color: #001335; }

.inv-popup__title {
  font-size: 23px;
  font-weight: 700;
  color: #001335;
  margin: 4px 0 8px;
}
.inv-popup__lead {
  font-size: 14.5px;
  color: #5a6a80;
  line-height: 1.6;
  margin-bottom: 24px;
}


/* =====================
   UKRYCIE DOMYŚLNEGO MENU WORDPRESS
   ===================== */
#site-navigation,
.main-navigation,
.nav-menu-wrapper,
button.menu-toggle,
.menu-toggle,
#primary-menu,
.primary-menu { display: none !important; }

/* =====================
   MOBILE — WIĘKSZE CZCIONKI
   ===================== */
@media (max-width: 600px) {
  body { font-size: 16.5px; }

  /* Hero */
  .inv-hero h1 { font-size: 35px; }
  .inv-hero__lead { font-size: 16.5px; line-height: 1.7; }
  .inv-hero__tag { font-size: 14px; }

  /* Sekcje — nagłówki */
  .inv-section__title { font-size: 25px; }
  .inv-section__label { font-size: 14px; }

  /* Gałęzie / branże */
  .inv-branch h3 { font-size: 16.5px; }
  .inv-branch p { font-size: 16px; }

  /* Oferta */
  .inv-oferta__card h3 { font-size: 17.5px; }
  .inv-oferta__card p { font-size: 16px; color: #4a5a70; }

  /* Dlaczego Involt */
  .inv-why__text h4 { font-size: 16.5px; }
  .inv-why__text p { font-size: 16px; }

  /* Stats */
  .inv-stats__num { font-size: 21px; }
  .inv-stats__label { font-size: 14px; }

  /* Page hero */
  .inv-page-hero h1 { font-size: 31px; }
  .inv-page-hero__text { font-size: 16.5px; line-height: 1.75; }

  /* Lead nad siatką kategorii (podstrony produktowe) */
  .inv-firma-sectors__lead { font-size: 16px; }

  /* Pasek przewag pod hero (podstrony produktowe) */
  .inv-oferta-przewagi .inv-stats__label { font-size: 14.5px; }

  /* Karty kategorii produktów (podstrony produktowe) */
  .inv-product-card__header h3 { font-size: 16px; }
  .inv-product-tags span { font-size: 14px; padding: 5px 11px; }

  /* Karty */
  .inv-contact-card h3 { font-size: 15.5px; }
  .inv-contact-card p { font-size: 15.5px; }
  .inv-team-card__name { font-size: 15.5px; }
  .inv-team-card__role { font-size: 14.5px; }

  /* =====================
     MINIMUM 12,5PX — reszta drobnych tekstów
     ===================== */
  .inv-btn { font-size: 14px; }
  .inv-btn--outline-white { font-size: 14px; }
  .inv-oferta__num { font-size: 14px; }
  .inv-oferta__link { font-size: 14px; }
  .inv-partners__label { font-size: 14px; }
  .inv-why__num-label { font-size: 14px; }
  .inv-footer__links a { font-size: 14px; }
  .inv-footer__col-title { font-size: 14px; }
  .inv-footer__copy { font-size: 14px; }
  .inv-footer__bottom-links a { font-size: 14px; }
  .inv-form__section-title { font-size: 14px; }
  .inv-form__label { font-size: 14px; }
  .inv-form__checkbox-row { font-size: 14px; }
  .inv-form__hint { font-size: 14px; }
  .inv-job-item__meta-tag { font-size: 14px; }
  .inv-contact-bank h3 { font-size: 14px; }
  .inv-contact-bank__currency { font-size: 14px; }
  .inv-info-block h3 { font-size: 14px; }
  .inv-firma-sector span { font-size: 14px; }
  .inv-vmw-card__tags span { font-size: 14px; }
  .inv-team-dept__title { font-size: 14px; }
  .inv-dept-email-card__label { font-size: 14px; }
  .inv-case-card__tag { font-size: 14px; }
  .inv-case-card__quote cite { font-size: 14px; }
  .inv-case-card__quote cite span { font-size: 14px; }
  .inv-ows-nav__title { font-size: 14px; }
  .inv-ows-nav a { font-size: 14px; }
  .inv-cta__contact-label { font-size: 14px; }
}