/*
Theme Name: LCM Lindemann Cutting Machines
Theme URI: https://lindemannmachines.com
Author: LCM
Author URI: https://lindemannmachines.com
Description: Dedykowany motyw B2B dla LCM Lindemann Cutting Machines. Maszyny do cięcia kabli.
Version: 2.0.0
License: Proprietary
Text Domain: lcm
*/

/* ==========================================================================
   LCM LINDEMANN CUTTING MACHINES — GLOBALNY SYSTEM STYLÓW (B2B)
   Paleta: burgundowy (#8B1A1A), kremowy (#EDE6DB / #F5F0EA), czarny (#0A0A0A)
   Font: DM Sans
   ========================================================================== */

:root {
  --primary: #1A1A1A;
  --text: #2C2420;
  --bg: #F5F0EA;
  --accent: #8B1A1A;
  --accentHover: #6B1414;
  --accentLight: #C41E1E;
  --menuBg: #0A0A0A;
  --menuBorder: #2A2A2A;
  --menuText: #E8E0D4;
  --menuAccent: #C41E1E;
  --menuAccentHover: #E02020;
  --radius: 16px;
  --radiusBtn: 999px;
  --shadow: 0 18px 40px rgba(10,10,10,.12);
  --shadowSoft: 0 10px 22px rgba(10,10,10,.08);
  --container: 1180px;
  --sectionY: clamp(78px, 7vw, 110px);
  --font: 'DM Sans', system-ui, -apple-system, sans-serif;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: rgba(139,26,26,.25); color: #fff; }
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .15s; }
a:hover { color: var(--accentHover); }

/* --- TYPOGRAFIA --- */
h1, h2, h3, h4, h5 { margin: 0 0 16px; letter-spacing: -0.02em; }
h1 { color: #fff; font-weight: 900; font-size: clamp(34px, 5vw, 58px); line-height: 1.08; }
h2 { color: var(--primary); font-weight: 800; font-size: clamp(24px, 3vw, 36px); line-height: 1.2; }
h3 { color: var(--text); font-weight: 800; font-size: clamp(18px, 2.2vw, 24px); line-height: 1.3; }
h4 { font-weight: 900; font-size: 18px; line-height: 1.25; margin-bottom: 12px; }
h5 { font-weight: 900; font-size: 15px; line-height: 1.2; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
p { margin: 0 0 18px; }

/* --- LAYOUT --- */
.container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }
.section { padding: var(--sectionY) 0; }
.section--white { background: #fff; border-top: 1px solid rgba(10,10,10,.06); }
.section--gray { background: #EDE6DB; }
.section--dark { background: linear-gradient(180deg, #1A1A1A 0%, #0A0A0A 100%); color: rgba(255,255,255,.92); }
.section--dark h2, .section--dark h3 { color: #fff; }

.section__label { font-size: 12px; font-weight: 900; letter-spacing: .10em; text-transform: uppercase; color: var(--accentLight); margin-bottom: 10px; }
.section__heading { font-size: clamp(24px, 3vw, 36px); font-weight: 800; line-height: 1.2; margin-bottom: 16px; color: var(--primary); }
.section--dark .section__heading { color: #fff; }
.section__sub { font-size: 17px; color: rgba(44,36,32,.65); max-width: 620px; margin-bottom: 36px; line-height: 1.55; }
.section--dark .section__sub { color: rgba(255,255,255,.65); }

.accent-line { width: 60px; height: 2px; background: var(--accent); border-radius: 999px; margin: 10px 0 20px; }
.section--dark .accent-line { background: var(--accentLight); }

/* --- SIATKI --- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 3vw, 26px); align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 980px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .grid-4 { grid-template-columns: 1fr; } }

/* --- PRZYCISKI --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: var(--radiusBtn);
  font-weight: 800; font-size: 15px; font-family: var(--font);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .12s, background .2s, border-color .2s, color .2s;
  white-space: nowrap; line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accentHover); color: #fff; }
.btn--secondary { background: transparent; border-color: var(--accent); color: var(--accent); }
.btn--secondary:hover { border-color: var(--accentHover); color: var(--accentHover); }
.btn--white-outline { border-color: rgba(255,255,255,.25); color: #fff; background: transparent; }
.btn--white-outline:hover { border-color: var(--accentLight); color: var(--accentLight); }
.btn--large { padding: 18px 32px; font-size: 17px; }

/* ======== HEADER ======== */
.header {
  background: #0A0A0A;
  position: sticky; top: 0; z-index: 9999;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  overflow: visible !important;
}

.header__inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 20px;
}

/* --- Logo w kremowym bloku --- */
.header__logo {
  display: flex;
  align-items: center;
  background: #F5F0EA;
  padding: 8px 20px 8px 16px;
  border-radius: 6px;
  position: relative;
  flex-shrink: 0;
}

.header__logo::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: #8B1A1A;
  border-radius: 2px;
}

.header__logo img,
.header__logo .custom-logo {
  height: 44px;
  width: auto;
  display: block;
}

/* --- Nawigacja --- */
.header__nav {
  display: flex; align-items: center; gap: 28px;
  list-style: none; margin: 0; padding: 0;
}
.header__nav > li {
  position: static;
}
.header__nav a {
  color: var(--menuText, #E8E0D4);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .01em;
  transition: color .2s;
}
.header__nav a:hover {
  color: var(--accentLight, #C41E1E);
}

/* --- Prawa strona headera --- */
.header__right {
  display: flex; align-items: center; gap: 16px;
  flex-shrink: 0;
}

/* --- Przełącznik językowy --- */
.lang-switch {
  display: flex; gap: 4px;
}
.lang-switch a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: .75rem; font-weight: 700;
  text-decoration: none;
  color: var(--menuText, #E8E0D4);
  border: 1.5px solid rgba(255,255,255,.2);
  transition: all .2s;
}
.lang-switch a:hover {
  border-color: var(--accent, #8B1A1A);
  color: #fff;
}
.lang-switch a.active {
  background: var(--accent, #8B1A1A);
  border-color: var(--accent, #8B1A1A);
  color: #fff;
}

/* --- CTA button w headerze --- */
.header__cta {
  background: var(--accent, #8B1A1A);
  color: #fff;
  padding: 10px 24px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
  white-space: nowrap;
}
.header__cta:hover {
  background: var(--accentHover, #6B1414);
}

/* --- Burger (mobile) --- */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid rgba(255,255,255,.2);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
  transition: all .3s;
}

/* ======== DROPDOWN MENU (DESKTOP) ======== */
.header__inner nav {
  position: static;
}

.header__nav > li.menu-item-has-children > a::after {
  content: " ▾"; font-size: 12px; opacity: .5;
}

.header__nav .sub-menu {
  display: flex; flex-direction: column; gap: 4px;
  position: absolute; top: 76px; left: auto;
  min-width: 220px; background: #fff; border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px; padding: 8px; box-shadow: 0 15px 40px rgba(0,0,0,.18);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: all .2s ease; z-index: 99999;
  list-style: none; margin: 0;
}

.header__nav > li.menu-item-has-children:hover .sub-menu,
.header__nav > li.menu-item-has-children:focus-within .sub-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
}

.header__nav .sub-menu::before {
  content: ""; position: absolute; top: -76px; left: -20px; right: -20px; height: 76px; background: transparent;
}

.header__nav .sub-menu li { margin: 0; padding: 0; }

.header__nav .sub-menu a {
  display: block; padding: 10px 16px; color: #2C2420 !important;
  font-size: 14px; font-weight: 600; border-radius: 8px; transition: background .15s, color .15s;
}

.header__nav .sub-menu a:hover { background: rgba(139,26,26,.08); color: var(--accent) !important; }

/* ======== RESPONSYWNOŚĆ HEADERA ======== */

@media (max-width: 1100px) {
  .header__nav {
    gap: 18px;
  }
  .header__nav a {
    font-size: .88rem;
  }
  .header__cta {
    padding: 8px 18px;
    font-size: .85rem;
  }
}

@media (max-width: 980px) {
  .header__nav {
    display: none;
  }
  .header__right .lang-switch {
    display: none;
  }
  .header__cta {
    display: none;
  }
  .header__right .btn {
    display: none;
  }
  .burger {
    display: block;
  }
  .header__logo {
    padding: 6px 14px 6px 12px;
  }
  .header__logo img,
  .header__logo .custom-logo {
    height: 36px;
  }
}

@media (max-width: 480px) {
  .header__inner {
    height: 60px;
    gap: 12px;
  }
  .header__logo {
    padding: 5px 12px 5px 10px;
  }
  .header__logo img,
  .header__logo .custom-logo {
    height: 30px;
  }
}
/* Language switcher (alternatywna klasa) */
.lang-sw { display: flex; gap: 4px; }
.lang-sw a {
  font-size: 12px; font-weight: 800; letter-spacing: .05em;
  padding: 5px 9px; border-radius: 999px;
  color: rgba(232,224,212,.55); border: 1px solid rgba(255,255,255,.12);
  transition: all .15s;
}
.lang-sw a.is-active, .lang-sw a:hover {
  background: var(--accent); color: #fff; border-color: var(--accent);
}

/* ======== HERO ======== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1200px 600px at 20% 20%, rgba(196,30,30,.15), transparent 60%),
    radial-gradient(900px 500px at 85% 35%, rgba(139,26,26,.10), transparent 55%),
    linear-gradient(180deg, #1A1A1A 0%, #0A0A0A 100%);
  color: #fff; padding: clamp(80px, 9vw, 140px) 0 clamp(60px, 7vw, 100px);
}
.hero::after {
  content: ""; position: absolute; left: -120px; top: -120px;
  width: 340px; height: 340px; border-radius: 999px;
  border: 2px solid rgba(196,30,30,.18); pointer-events: none;
}
.hero__grid {
  display: grid; grid-template-columns: 1.25fr .75fr;
  gap: clamp(30px, 5vw, 60px); align-items: center;
  position: relative; z-index: 1;
}
.hero__eyebrow {
  font-size: 12px; font-weight: 900; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accentLight); margin-bottom: 16px;
}
.hero__lead {
  font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,.8);
  max-width: 560px; margin-bottom: 28px; line-height: 1.55;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: clamp(24px, 4vw, 48px); margin-top: 40px; flex-wrap: wrap; }
.hero__stat-num { font-size: clamp(28px, 3.5vw, 40px); font-weight: 900; letter-spacing: -.02em; color: #fff; line-height: 1.1; }
.hero__stat-num span { font-size: 60%; font-weight: 700; opacity: .65; margin-left: 2px; }
.hero__stat-label { font-size: 13px; color: rgba(255,255,255,.5); font-weight: 600; margin-top: 4px; }
.hero__img { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,.1); box-shadow: 0 30px 80px rgba(0,0,0,.4); }
.hero__img img { width: 100%; display: block; }
@media(max-width:980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__img { max-width: 480px; margin: 0 auto; }
}

/* ======== PAIN STRIP ======== */
.pain-strip { background: var(--accent); padding: 16px 0; overflow: hidden; }
.pain-strip__track { display: flex; gap: 48px; white-space: nowrap; width: max-content; animation: painScroll 30s linear infinite; }
.pain-strip__item { font-size: 15px; font-weight: 800; color: rgba(255,255,255,.85); display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.pain-strip__item::before { content: "\2715"; font-size: 12px; opacity: .5; }
@keyframes painScroll { to { transform: translateX(-50%); } }

/* ======== ICON CARDS ======== */
.icard {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 24px; transition: border-color .2s, box-shadow .2s;
}
.icard:hover { border-color: rgba(196,30,30,.4); box-shadow: 0 12px 30px rgba(0,0,0,.2); }
.icard__icon {
  width: 48px; height: 48px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
  background: rgba(196,30,30,.2); border: 1px solid rgba(196,30,30,.35); color: #fff;
}
.icard h4 { color: #fff; font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.icard p { color: rgba(255,255,255,.7); font-size: 15px; margin: 0; line-height: 1.55; }
.icard--light { background: #fff; border: 1px solid rgba(10,10,10,.06); box-shadow: var(--shadowSoft); }
.icard--light:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.icard--light .icard__icon { background: rgba(139,26,26,.1); border-color: rgba(139,26,26,.25); color: var(--accent); }
.icard--light h4 { color: var(--primary); }
.icard--light p { color: rgba(44,36,32,.65); }

/* ======== MACHINE CARDS ======== */
.mcard {
  background: #fff; border: 1px solid rgba(10,10,10,.06); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadowSoft); transition: all .2s; position: relative;
}
.mcard:hover { box-shadow: var(--shadow); border-color: var(--accent); transform: translateY(-4px); }
.mcard__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 11px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; background: rgba(139,26,26,.9); color: #fff;
}
.mcard__img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; background: #eee; }
.mcard__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.mcard__name { font-size: 24px; font-weight: 900; color: var(--primary); }
.mcard__sub { font-size: 14px; color: rgba(44,36,32,.5); font-weight: 600; margin-bottom: 16px; }
.mcard__specs { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.mcard__specs li { font-size: 14px; color: var(--text); display: flex; justify-content: space-between; padding-bottom: 8px; border-bottom: 1px solid rgba(10,10,10,.06); }
.mcard__specs li strong { font-weight: 800; }
.mcard__price { font-size: 30px; font-weight: 900; color: var(--accent); margin-bottom: 18px; letter-spacing: -.02em; }
.mcard__price span { font-size: 14px; font-weight: 600; color: rgba(44,36,32,.45); margin-left: 4px; }
.mcard .btn { width: 100%; text-align: center; }

/* ======== COMPARE ======== */
.compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; margin-top: 36px; border-radius: var(--radius); overflow: hidden; }
.compare__col { padding: 32px; }
.compare__col h3 { font-size: 20px; font-weight: 900; margin-bottom: 20px; }
.compare__col--us { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius) 0 0 var(--radius); }
.compare__col--us h3 { color: var(--accentLight); }
.compare__col--them { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); border-radius: 0 var(--radius) var(--radius) 0; }
.compare__col--them h3 { color: rgba(255,255,255,.45); }
.compare__divider { width: 1px; background: rgba(255,255,255,.08); }
.compare__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.compare__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; line-height: 1.5; }
.cdot { width: 8px; height: 8px; border-radius: 999px; margin-top: 7px; flex: 0 0 auto; }
.cdot--green { background: #22c55e; }
.cdot--muted { background: rgba(255,255,255,.25); }
@media(max-width:768px) {
  .compare { grid-template-columns: 1fr; }
  .compare__divider { width: 100%; height: 1px; }
  .compare__col--us { border-radius: var(--radius) var(--radius) 0 0; }
  .compare__col--them { border-radius: 0 0 var(--radius) var(--radius); }
}

/* ======== SEGMENTS ======== */
.seg { background: #fff; border: 1px solid rgba(10,10,10,.06); border-radius: var(--radius); padding: 24px; transition: all .2s; }
.seg:hover { border-color: var(--accent); box-shadow: var(--shadowSoft); transform: translateY(-2px); }
.seg__num { font-size: 32px; font-weight: 900; color: var(--accent); opacity: .3; line-height: 1; margin-bottom: 8px; }
.seg__title { font-size: 16px; font-weight: 800; color: var(--primary); margin-bottom: 6px; }
.seg__text { font-size: 14px; color: rgba(44,36,32,.6); margin: 0; line-height: 1.5; }

/* ======== ROI ======== */
.roi { background: linear-gradient(135deg, var(--accent) 0%, #5a1010 100%); color: #fff; padding: var(--sectionY) 0; }
.roi__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.roi h2 { color: #fff; font-size: clamp(24px, 3vw, 36px); font-weight: 800; margin-bottom: 16px; }
.roi__text { font-size: 17px; color: rgba(255,255,255,.85); line-height: 1.6; margin-bottom: 24px; }
.roi__numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.roi__card { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); padding: 24px; text-align: center; backdrop-filter: blur(6px); }
.roi__val { font-size: clamp(28px, 4vw, 38px); font-weight: 900; letter-spacing: -.02em; }
.roi__lbl { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 4px; }
@media(max-width:768px) { .roi__grid { grid-template-columns: 1fr; } }

/* ======== FAQ ======== */
.faq-item {
  background: #fff; border: 1px solid rgba(10,10,10,.06);
  border-radius: 12px; margin-bottom: 12px; overflow: hidden;
  box-shadow: 0 2px 4px rgba(10,10,10,.02); transition: all .2s;
}
.faq-item:hover { border-color: var(--accent); box-shadow: 0 8px 20px rgba(10,10,10,.06); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 700; font-size: 17px; color: var(--primary);
  background: transparent; user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chev {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,10,10,.03); font-size: 12px; color: var(--primary);
  transition: all .2s; flex: 0 0 auto;
}
.faq-item[open] .faq-chev { background: var(--accent); color: #fff; transform: rotate(180deg); }
.faq-body { padding: 0 24px 24px; font-size: 16px; line-height: 1.7; color: #4b5563; animation: faqSlide .25s ease-out; }
@keyframes faqSlide { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ======== PRE-FOOTER ======== */
.pre-footer {
  background: linear-gradient(180deg, #1A1A1A 0%, #0A0A0A 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: clamp(60px, 7vw, 96px) 0;
}
.pre-footer__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.pre-footer__label { font-size: 12px; font-weight: 900; letter-spacing: .10em; text-transform: uppercase; color: var(--accentLight); margin-bottom: 12px; }
.pre-footer__heading { color: #fff; font-size: clamp(24px, 3vw, 36px); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.pre-footer__sub { color: rgba(232,224,212,.7); font-size: 17px; line-height: 1.6; margin-bottom: 28px; max-width: 480px; }
.pre-footer__proof { display: flex; flex-direction: column; gap: 20px; }
.pre-footer__proof-item { border-left: 3px solid var(--accent); padding: 10px 0 10px 20px; }
.pre-footer__proof-num { font-size: 16px; font-weight: 900; color: #fff; margin-bottom: 4px; }
.pre-footer__proof-desc { font-size: 13px; color: rgba(232,224,212,.5); line-height: 1.45; }
@media(max-width:900px) {
  .pre-footer__inner { grid-template-columns: 1fr; }
  .pre-footer__proof { flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .pre-footer__proof-item { flex: 1 1 160px; }
}

/* ======== FOOTER ======== */
.site-footer {
  background: var(--menuBg); color: var(--menuText);
  padding: 48px 0 0; border-top: 1px solid rgba(255,255,255,.05); font-size: 15px;
}
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer__brand { font-size: 17px; font-weight: 900; color: #fff; margin-bottom: 10px; }
.footer__desc { font-size: 14px; color: rgba(232,224,212,.55); line-height: 1.65; margin-bottom: 16px; max-width: 300px; }
.footer__col-title { color: #fff; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .09em; margin-bottom: 14px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link { font-size: 14px; color: rgba(232,224,212,.55); font-weight: 600; transition: color .15s; }
.footer__link:hover { color: var(--accentLight); }
.footer__bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0 28px; flex-wrap: wrap; }
.footer__copy { font-size: 13px; color: rgba(232,224,212,.25); }
@media(max-width:980px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media(max-width:540px) { .footer__grid { grid-template-columns: 1fr; } .footer__bar { flex-direction: column; align-items: flex-start; } }

/* ======== MOBILE DRAWER ======== */
.drawer { display: none; position: fixed; inset: 0; z-index: 100000; }
.drawer.is-open { display: block; }
.drawer__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.75); backdrop-filter: blur(4px); }
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: 85%; max-width: 360px;
  background: #fff; box-shadow: -5px 0 30px rgba(0,0,0,.35);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .3s cubic-bezier(.25,1,.5,1);
  overflow-y: auto;
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__top { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid #f3f4f6; }
.drawer__close { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: #f3f4f6; border: none; border-radius: 50%; font-size: 20px; color: #111; cursor: pointer; }
.drawer__menu { padding: 20px; display: flex; flex-direction: column; gap: 0; list-style: none; }
.drawer__menu a { display: block; padding: 14px 0; color: var(--text); font-size: 17px; font-weight: 700; border-bottom: 1px solid #f9fafb; }
.drawer__menu a:hover { color: var(--accent); }
.drawer__footer-cta { padding: 0 20px 20px; display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
.drawer__footer-cta .btn { width: 100%; justify-content: center; }

/* ======== SINGLE / PAGE CONTENT ======== */
.entry-content { max-width: 780px; margin: 0 auto; padding: var(--sectionY) 0; }
.entry-content h1 { color: var(--primary); }
.entry-content h2 { margin-top: 40px; }
.entry-content img { border-radius: var(--radius); margin: 24px 0; }
.entry-content ul, .entry-content ol { padding-left: 24px; margin-bottom: 18px; }
.entry-content li { margin-bottom: 8px; }

/* ======== UTILITIES ======== */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

/* ======== FADE IN ======== */
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity .5s ease-out, transform .5s ease-out; }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* ======== WP OVERRIDES ======== */
.wp-block-table { overflow-x: auto; }
.wp-block-table table { word-break: break-word; min-width: 100%; }
.alignwide { max-width: var(--container); margin-left: auto; margin-right: auto; }
.alignfull { width: 100%; max-width: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .faq-chev, .drawer__panel, .pain-strip__track { transition: none !important; animation: none !important; }
}

/* ======== DRAWER SUBMENU (MOBILE) ======== */
.drawer__menu .sub-menu {
  display: none; list-style: none; padding: 0 0 0 16px; margin: 0 0 8px;
  background: #F5F0EA; border-radius: 8px;
}

.drawer__menu li.menu-item-has-children.is-open .sub-menu { display: block; }

.drawer__menu .sub-menu a {
  font-size: 15px; font-weight: 500; padding: 10px 0; color: #4b5563 !important;
  border-bottom: 1px solid rgba(0,0,0,.03);
}

.drawer__menu > li.menu-item-has-children > a::after {
  content: " ▾"; float: right; font-size: 16px; color: #9ca3af;
}

/* ============================================================
   MACHINE PRODUCT PAGES (mp-)
   Podstrony maszyn: D1, V7, B4
   Dodaj na końcu style.css
   ============================================================ */

/* --- Hero --- */
.mp-hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
  padding: clamp(60px, 8vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.mp-hero::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(139,26,26,.08) 0%, transparent 70%);
  pointer-events: none;
}
.mp-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.mp-hero__content .section__label {
  color: var(--accentLight);
}
.mp-hero__h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.12;
}
.mp-hero__lead {
  color: rgba(255,255,255,.65);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.7;
  margin-bottom: 8px;
}
.mp-hero__sub {
  color: rgba(255,255,255,.85);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  margin-bottom: 28px;
}
.mp-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.mp-hero__micro {
  color: rgba(255,255,255,.4);
  font-size: 0.82rem;
}
.mp-hero__image img {
  width: 100%;
  max-width: 560px;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}

/* --- Materials --- */
.mp-materials__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.mp-materials__item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadowSoft);
  transition: box-shadow .2s;
}
.mp-materials__item:hover {
  box-shadow: var(--shadow);
}
.mp-materials__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139,26,26,.06);
  border-radius: 12px;
}
.mp-materials__item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--primary);
}
.mp-materials__item p {
  font-size: 0.88rem;
  color: rgba(44,36,32,.6);
  margin: 0;
}

.mp-callout {
  background: rgba(139,26,26,.04);
  border-left: 4px solid var(--accent);
  padding: 28px 32px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.mp-callout strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--primary);
}
.mp-callout p {
  color: rgba(44,36,32,.7);
  margin-bottom: 16px;
}

/* --- Spec Table --- */
.mp-spec-table-wrap {
  max-width: 720px;
}
.mp-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.mp-spec-table thead th {
  text-align: left;
  padding: 14px 20px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.5);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mp-spec-table tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  color: rgba(255,255,255,.7);
}
.mp-spec-table tbody td:first-child {
  color: rgba(255,255,255,.45);
}
.mp-spec-table tbody td strong {
  color: #fff;
}
.mp-spec-table tbody tr:hover td {
  background: rgba(255,255,255,.02);
}

/* --- Stats --- */
.mp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 40px;
}
.mp-stat {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
}
.mp-stat__number {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--accentLight);
  line-height: 1;
  margin-bottom: 4px;
}
.mp-stat__unit {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.mp-stat__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  margin: 0;
}

.mp-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.mp-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(196,30,30,.1);
  border: 1px solid rgba(196,30,30,.2);
  border-radius: 999px;
  color: rgba(255,255,255,.7);
  font-size: 0.8rem;
  font-weight: 600;
}

/* --- Safety grid --- */
.mp-safety-grid .icard--light {
  text-align: center;
  padding: 36px 28px;
}
.mp-safety-grid .icard--light__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

/* --- Timeline (serwis) --- */
.mp-timeline {
  max-width: 680px;
  position: relative;
  padding-left: 48px;
}
.mp-timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(139,26,26,.15);
}
.mp-timeline__step {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  position: relative;
}
.mp-timeline__marker {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -48px;
  top: 2px;
}
.mp-timeline__badge {
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}
.mp-timeline__content h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--primary);
}
.mp-timeline__content p {
  font-size: 0.9rem;
  color: rgba(44,36,32,.65);
  margin: 0;
}

/* --- Test cards --- */
.mp-test-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.mp-test-card {
  padding: 40px 32px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}
.mp-test-card--primary {
  background: rgba(196,30,30,.08);
  border-color: rgba(196,30,30,.2);
}
.mp-test-card h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 14px;
}
.mp-test-card p {
  color: rgba(255,255,255,.55);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}
.mp-test-card .btn {
  align-self: flex-start;
  margin-bottom: 14px;
}
.mp-test-card__micro {
  color: rgba(255,255,255,.35);
  font-size: 0.78rem;
}

/* --- Contact grid (form + info) --- */
.mp-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

/* --- Form --- */
.mp-form__field {
  margin-bottom: 20px;
}
.mp-form__field label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--primary);
}
.mp-form__req {
  color: var(--accent);
}
.mp-form__opt {
  font-weight: 400;
  color: rgba(44,36,32,.4);
  font-size: 0.82rem;
}
.mp-form__field input[type="email"],
.mp-form__field input[type="text"],
.mp-form__field textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font);
  font-size: 0.92rem;
  border: 1px solid rgba(44,36,32,.15);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  transition: border-color .2s;
}
.mp-form__field input:focus,
.mp-form__field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139,26,26,.08);
}
.mp-form__field--checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.mp-form__field--checkbox input[type="checkbox"] {
  margin-top: 4px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}
.mp-form__field--checkbox label {
  font-weight: 400;
  font-size: 0.82rem;
  color: rgba(44,36,32,.6);
  margin-bottom: 0;
}
.mp-form__submit {
  width: 100%;
  justify-content: center;
}
.mp-form__micro {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(44,36,32,.4);
  margin-top: 10px;
}
.mp-form__status {
  margin-top: 16px;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  text-align: center;
}
.mp-form__status--success {
  background: rgba(34,197,94,.08);
  color: #166534;
  border: 1px solid rgba(34,197,94,.2);
}
.mp-form__status--error {
  background: rgba(239,68,68,.08);
  color: #991b1b;
  border: 1px solid rgba(239,68,68,.2);
}

/* --- Contact info --- */
.mp-contact-info {
  padding: 36px 32px;
  background: rgba(139,26,26,.03);
  border: 1px solid rgba(139,26,26,.08);
  border-radius: var(--radius);
}
.mp-contact-info h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--primary);
}
.mp-contact-info__note {
  font-size: 0.85rem;
  color: rgba(44,36,32,.5);
  margin-bottom: 24px;
}
.mp-contact-info__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 0.92rem;
}
.mp-contact-info__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}
.mp-contact-info__item a {
  color: var(--primary);
}
.mp-contact-info__item a:hover {
  color: var(--accent);
}

/* --- Video --- */
.mp-video-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.mp-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.mp-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mp-video-bullets {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.mp-video-bullets p {
  font-size: 0.88rem;
  color: rgba(44,36,32,.6);
  margin: 0;
}

/* --- Use case grid adjustment --- */
.mp-use-grid .seg {
  text-align: center;
}
.mp-use-grid .seg__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.mp-use-grid .seg h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.mp-use-grid .seg p {
  font-size: 0.85rem;
  color: rgba(44,36,32,.6);
}

/* --- Screen reader only --- */
.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;
}

/* ============================================================
   RESPONSIVE — Machine pages
   ============================================================ */
@media (max-width: 980px) {
  .mp-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .mp-hero__ctas {
    justify-content: center;
  }
  .mp-hero__image {
    order: -1;
  }
  .mp-hero__image img {
    max-width: 400px;
    margin: 0 auto;
  }
  .mp-materials__list {
    grid-template-columns: 1fr;
  }
  .mp-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .mp-test-options {
    grid-template-columns: 1fr;
  }
  .mp-contact-grid {
    grid-template-columns: 1fr;
  }
  .mp-badge-row {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .mp-hero {
    padding: 48px 0;
  }
  .mp-timeline {
    padding-left: 40px;
  }
  .mp-timeline::before {
    left: 14px;
  }
  .mp-timeline__marker {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
    left: -40px;
  }
  .mp-video-bullets {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 520px) {
  .mp-hero__h1 {
    font-size: 1.5rem;
  }
  .mp-hero__ctas {
    flex-direction: column;
  }
  .mp-hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .mp-materials__item {
    padding: 18px;
  }
  .mp-test-card {
    padding: 28px 22px;
  }
  .mp-contact-info {
    padding: 24px 20px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   FRONT-PAGE v3.0 — NOWE KOMPONENTY
   Dopisz na KOŃCU istniejącego style.css (po ostatnim @media)
   ═══════════════════════════════════════════════════════════════ */


/* ── Hero trust line ── */
.hero__trust {
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
  margin: 0 0 24px;
  letter-spacing: 0.015em;
  line-height: 1.5;
}


/* ── Step cards (Jak to działa — 4 kroki) ── */
.step-card {
  background: #fff;
  border: 1px solid rgba(10,10,10,.06);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadowSoft);
  transition: all .2s;
}
.step-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 16px;
}
.step-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 10px;
}
.step-card__text {
  font-size: 0.92rem;
  color: rgba(44,36,32,.6);
  line-height: 1.55;
  margin: 0;
}


/* ── Fit cards (Zanim zapytasz o cenę) ── */
.fit-card {
  border-radius: var(--radius);
  padding: 36px 32px;
}
.fit-card--yes {
  background: rgba(34,120,60,.05);
  border: 1px solid rgba(34,120,60,.15);
}
.fit-card--note {
  background: rgba(139,26,26,.04);
  border: 1px solid rgba(139,26,26,.12);
}
.fit-card__heading {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 18px;
  color: var(--primary);
}
.fit-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.fit-card__list li {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text);
  padding-left: 24px;
  position: relative;
}
.fit-card--yes .fit-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #22783c;
  font-weight: 800;
}
.fit-card--note .fit-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}
.fit-card--note .fit-card__list li strong {
  color: var(--primary);
}


/* ── About block (Kto stoi za produktem) ── */
.about-block p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 18px;
}
.about-block p:last-child {
  margin-bottom: 0;
}


/* ══════════════════════════════════════════
   ROI CALCULATOR
   Osadzony inline w sekcji .roi
   ══════════════════════════════════════════ */
.roi-calc {
  max-width: 960px;
  margin: 0 auto;
}

/* --- Inputy --- */
.roi-calc__inputs {
  display: grid;
  gap: 28px;
  margin-bottom: 40px;
}
.roi-calc__field label {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  margin-bottom: 10px;
}

/* Slider */
.roi-calc__slider-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.roi-calc__slider-wrap input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,.18);
  outline: none;
  cursor: pointer;
}
.roi-calc__slider-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--accent);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.roi-calc__slider-wrap input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--accent);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.roi-calc__slider-val {
  min-width: 72px;
  text-align: right;
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  white-space: nowrap;
}

/* Radio group */
.roi-calc__radio-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.roi-calc__radio {
  font-size: 0.92rem;
  color: rgba(255,255,255,.75);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  transition: all .15s;
  user-select: none;
}
.roi-calc__radio:hover {
  border-color: rgba(255,255,255,.3);
}
.roi-calc__radio:has(input:checked) {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.3);
  color: #fff;
  font-weight: 700;
}
.roi-calc__radio input[type="radio"] {
  accent-color: #fff;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* --- Wyniki --- */
.roi-calc__results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.roi-calc__result-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  backdrop-filter: blur(6px);
}
.roi-calc__result-card--accent {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.28);
}
.roi-calc__result-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.roi-calc__result-val {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 6px;
}
.roi-calc__result-card--accent .roi-calc__result-val {
  color: #FFD700;
}
.roi-calc__result-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,.4);
  line-height: 1.45;
}

/* Disclaimer */
.roi-calc__disclaimer {
  font-size: 0.82rem;
  color: rgba(255,255,255,.4);
  text-align: center;
  line-height: 1.55;
  margin: 0;
}


/* ══════════════════════════════════════════
   RESPONSYWNOŚĆ — nowe komponenty
   ══════════════════════════════════════════ */

@media (max-width: 980px) {
  .fit-card {
    padding: 28px 24px;
  }
}

@media (max-width: 768px) {
  .roi-calc__results {
    grid-template-columns: 1fr;
  }
  .roi-calc__radio-group {
    flex-direction: column;
    gap: 8px;
  }
  .roi-calc__radio {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .step-card {
    padding: 24px 18px;
  }
  .fit-card {
    padding: 22px 18px;
  }
  .roi-calc__result-card {
    padding: 22px 18px;
  }
}

/* ==========================================================================
   BLOG LISTING (page-blog.php)
   Dodaj na końcu style.css
   ========================================================================== */

.blog-listing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 48px;
}

.blog-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(44, 36, 32, 0.1);
}

.blog-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.blog-card__img {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card__img:hover img {
  transform: scale(1.03);
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-card__date {
  font-size: 13px;
  color: rgba(44, 36, 32, 0.5);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.blog-card__title {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}

.blog-card__title a {
  color: var(--primary);
  text-decoration: none;
}

.blog-card__title a:hover {
  color: var(--accent);
}

.blog-card__excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  opacity: 0.8;
  margin: 4px 0 0;
}

.blog-card__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  margin-top: 8px;
  transition: color 0.2s;
}

.blog-card__link:hover {
  color: var(--accentHover);
}

.blog-listing__empty {
  text-align: center;
  padding: 60px 0;
  color: rgba(44, 36, 32, 0.5);
  font-size: 16px;
}

/* Pagination */
.blog-pagination {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 32px;
}

.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
  background: transparent;
  border: 1px solid rgba(44, 36, 32, 0.15);
  transition: all 0.2s;
}

.blog-pagination a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.blog-pagination .current {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
  .blog-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .blog-card__img {
    aspect-ratio: 16 / 9;
  }
}