*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0a0a0a; --panel: #141414; --panel2: #0e0e0e; --bdr: #222;
  --yel: #FFDE59; --white: #fff; --gray: #555; --lgray: #888;
  --green: #22c55e; --amber: #f59e0b; --red: #ef4444;
  --mono: 'Share Tech Mono', monospace;
  --cond: 'Barlow Condensed', sans-serif;
  --display: 'Arial Black', 'Helvetica Black', 'Arial', sans-serif;
  --body: 'Barlow', 'Helvetica', sans-serif;
}
html, body { background: var(--bg); }
body { color: var(--white); font-family: var(--body); -webkit-font-smoothing: antialiased; }

@keyframes fadeUp { from { opacity:0; transform:translateY(16px);} to { opacity:1; transform:translateY(0);} }
@keyframes fadeIn { from { opacity:0;} to { opacity:1;} }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.4;} }

/* Accessibility: respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  *:hover { transform: none !important; }
}

/* Accessibility: visible focus rings on all interactive elements */
:focus-visible {
  outline: 2px solid var(--yel);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Responsywność: zabezpieczenie przed wyjściem długich słów (URL, email) poza kontener */
body, p, h1, h2, h3, h4, h5, h6, span, a, li, div, td, th { overflow-wrap: break-word; word-break: normal; }
.usluga-bullets li, .footer-link, .contact-card, .founder-bio, .article-content, .blog-card-text { hyphens: auto; -webkit-hyphens: auto; }

/* ============== ROUTER PAGES ============== */
.page { display: none; animation: fadeIn .35s ease both; }
.page.active { display: block; }

/* ============== NAV ============== */
.nav {
  position: sticky; top: 0; z-index: 100;
  padding: 18px 32px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--bdr);
  background: rgba(10,10,10,.92); backdrop-filter: blur(10px);
}
.logo { display: inline-flex; align-items: center; height: 32px; line-height: 1; cursor: pointer; }
.logo img { height: 100%; width: auto; display: block; }
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a {
  font-family: var(--display); font-weight: 900; font-size: 11px;
  color: var(--white); letter-spacing: 2.5px;
  text-decoration: none; transition: color .2s;
  padding: 6px 0; cursor: pointer;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--yel); }
.nav-links a.active { color: var(--yel); border-bottom-color: var(--yel); }
.nav-lang { display: flex; gap: 4px; align-items: center; margin-left: 16px; padding-left: 16px; border-left: 1px solid var(--bdr); }
.nav-lang a {
  font-family: var(--display); font-weight: 900; font-size: 11px;
  color: var(--lgray); letter-spacing: 1.5px; text-decoration: none;
  padding: 4px 8px; border-radius: 4px; transition: color .2s, background .2s;
}
.nav-lang a:hover { color: var(--white); }
.nav-lang a.active { color: var(--yel); background: rgba(255,222,89,.1); }
.nav-lang span.sep { color: var(--bdr); font-size: 11px; }
@media (max-width: 820px) {
  .nav-lang { margin: 0; padding: 12px 0; border-left: none; border-top: 1px solid var(--bdr); justify-content: center; }
}

.nav-mobile-toggle {
  display: none; background: transparent; border: 1px solid var(--bdr);
  padding: 8px 12px; border-radius: 8px; cursor: pointer; color: var(--white);
}
@media (max-width: 820px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); flex-direction: column; padding: 16px 32px; gap: 12px;
    border-bottom: 1px solid var(--bdr); }
  .nav-links.open { display: flex; }
  .nav-mobile-toggle { display: block; }
}

/* ============== SECTIONS ==== */
section.s { padding: 56px 32px; position: relative; }
.sec-inner { max-width: 1280px; margin: 0 auto; }
.sec-kicker {
  font-family: var(--mono); font-size: 11px; color: var(--yel);
  letter-spacing: 5px; text-transform: uppercase; margin-bottom: 18px;
  display: inline-block; padding: 6px 14px;
  border: 1px solid rgba(255,222,89,.3); border-radius: 999px;
  background: rgba(255,222,89,.04);
}
.sec-title {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(32px, 4.5vw, 52px); line-height: 1.05;
  letter-spacing: -.5px; margin-bottom: 20px; text-transform: uppercase;
}
.sec-title .y { color: var(--yel); }
.sec-subtitle {
  font-family: var(--cond); font-weight: 700;
  font-size: clamp(17px, 2.2vw, 24px); line-height: 1.25;
  color: #e5e5e5; margin-bottom: 36px; text-transform: uppercase;
  letter-spacing: 1px; max-width: 1000px;
}
.sec-lead {
  font-size: 16px; line-height: 1.6; color: #e5e5e5;
  margin-bottom: 40px; max-width: 760px;
}

/* Page hero (used on subpages) */
.page-hero {
  position: relative; padding: 56px 32px 48px; overflow: hidden;
  background: radial-gradient(ellipse at 80% 20%, rgba(255,222,89,.06), transparent 60%), var(--bg);
  border-bottom: 1px solid var(--bdr);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,222,89,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,222,89,.03) 1px, transparent 1px);
  background-size: 40px 40px; pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--yel) 0%, var(--yel) 30%, transparent 30%, transparent 50%, var(--yel) 50%, var(--yel) 60%, transparent 60%);
}
.page-hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 2; animation: fadeUp .55s ease both; }
.page-hero-title {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(36px, 6vw, 72px); line-height: 1; letter-spacing: -1px;
  margin-bottom: 20px; max-width: 1000px; text-transform: uppercase;
}
.page-hero-title .y { color: var(--yel); }
.page-hero-lead {
  font-family: var(--body); font-weight: 500;
  font-size: clamp(16px, 2vw, 20px); line-height: 1.55;
  color: #e8e8e8; max-width: 720px;
}

/* CTA buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--yel); color: var(--bg);
  font-family: var(--display); font-weight: 900; font-size: 12px;
  letter-spacing: 2px; padding: 16px 28px; border-radius: 999px;
  text-decoration: none; transition: transform .2s; cursor: pointer; border: none;
}
.btn-primary:hover { transform: translateX(4px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white); border: 1px solid var(--bdr);
  font-family: var(--display); font-weight: 900; font-size: 12px;
  letter-spacing: 2px; padding: 16px 28px; border-radius: 999px;
  text-decoration: none; transition: border-color .2s, color .2s; cursor: pointer;
}
.btn-secondary:hover { border-color: var(--yel); color: var(--yel); }

/* ============== HOME HERO ============== */
.hero {
  position: relative; padding: 64px 32px 56px;
  overflow: hidden;
  background: radial-gradient(ellipse at 80% 20%, rgba(255,222,89,.06), transparent 60%), var(--bg);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,222,89,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,222,89,.03) 1px, transparent 1px);
  background-size: 40px 40px; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--yel) 0%, var(--yel) 30%, transparent 30%, transparent 50%, var(--yel) 50%, var(--yel) 60%, transparent 60%);
}
.hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 2; animation: fadeUp .7s ease both; }
.hero-kicker {
  font-family: var(--mono); font-size: 11px; color: var(--yel);
  letter-spacing: 5px; margin-bottom: 24px; display: inline-block;
  padding: 6px 14px; border: 1px solid rgba(255,222,89,.3); border-radius: 999px;
  background: rgba(255,222,89,.04);
}
.hero-title {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(38px, 6.5vw, 80px); line-height: 1;
  letter-spacing: -1px; margin-bottom: 28px; max-width: 1100px;
  text-transform: uppercase;
}
.hero-title .y { color: var(--yel); }
.hero-subtitle {
  font-family: var(--cond); font-weight: 700;
  font-size: clamp(17px, 2.2vw, 26px); line-height: 1.2;
  color: #e5e5e5; margin-bottom: 44px; max-width: 800px;
  text-transform: uppercase; letter-spacing: 1px;
}
.hero-subtitle .y { color: var(--yel); }
.hero-props { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 44px; max-width: 920px; }
@media (max-width: 600px) { .hero-props { grid-template-columns: 1fr; } }
.hero-prop {
  background: var(--panel); border: 1px solid var(--bdr); border-radius: 14px;
  padding: 18px 22px; border-left: 3px solid var(--yel);
  display: flex; align-items: center; gap: 16px;
  transition: border-color .25s, transform .25s;
}
.hero-prop:hover { border-color: var(--yel); transform: translateX(4px); }
.hero-prop-num { font-family: var(--display); font-weight: 900; font-size: 22px; color: var(--yel); line-height: 1; flex-shrink: 0; }
.hero-prop-text { font-family: var(--body); font-weight: 600; font-size: 15px; color: var(--white); line-height: 1.35; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============== NASZ CEL TILES ============== */
.s-cel { background: var(--panel2); border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr); }
.tag-poprzez {
  display: inline-block; font-family: var(--display); font-weight: 900; font-size: 12px;
  color: var(--bg); background: var(--yel); letter-spacing: 3px; padding: 8px 16px;
  border-radius: 8px; margin-bottom: 32px;
}
.cel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 36px; }
@media (max-width: 900px) { .cel-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cel-grid { grid-template-columns: 1fr; } }
.cel-tile {
  background: var(--panel); border: 1px solid var(--bdr); border-radius: 20px;
  padding: 28px 24px; position: relative; overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  animation: fadeUp .55s ease both;
}
.cel-tile:hover { border-color: var(--yel); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(255,222,89,.06); }
.cel-tile::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--yel); transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.8,.3,1);
}
.cel-tile:hover::before { transform: scaleX(1); }
.cel-num { position: absolute; top: 22px; right: 22px; font-family: var(--display); font-weight: 900; font-size: 14px; color: var(--lgray); letter-spacing: 1px; }
.cel-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(255,222,89,.08); border: 1px solid rgba(255,222,89,.2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.cel-icon svg { width: 28px; height: 28px; }
.cel-action { font-family: var(--display); font-weight: 900; font-size: 12px; color: var(--yel); letter-spacing: 3px; margin-bottom: 8px; }
.cel-title { font-family: var(--display); font-weight: 900; font-size: 22px; line-height: 1.1; color: var(--white); letter-spacing: -.3px; text-transform: uppercase; }
.cel-foot {
  background: var(--panel); border: 1px solid var(--bdr); border-radius: 20px;
  border-left: 3px solid var(--yel); padding: 24px 28px;
  font-size: 15px; line-height: 1.65; color: #d5d5d5;
  font-family: var(--body); font-weight: 500; max-width: 1000px;
}

/* ============== OFERTA & GENERIC CARDS ============== */
.cards-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .cards-grid-3 { grid-template-columns: 1fr; } }
.card-generic {
  background: var(--panel); border: 1px solid var(--bdr); border-radius: 20px;
  padding: 32px 28px 28px; position: relative; overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.card-generic:hover { border-color: var(--yel); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(255,222,89,.06); }
.card-generic::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--yel); transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.8,.3,1);
}
.card-generic:hover::before { transform: scaleX(1); }
.card-generic .num-bg {
  position: absolute; top: 24px; right: 26px; font-family: var(--display); font-weight: 900;
  font-size: 32px; color: var(--bdr); line-height: 1;
}
.card-generic .icon-box {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(255,222,89,.08); border: 1px solid rgba(255,222,89,.2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.card-generic .icon-box svg { width: 28px; height: 28px; }
.card-generic .pill {
  display: inline-block; background: var(--white); color: var(--bg);
  font-family: var(--display); font-weight: 900; font-size: 13px;
  padding: 8px 18px; border-radius: 999px; margin-bottom: 14px; letter-spacing: .5px;
}
.card-generic h3 {
  font-family: var(--display); font-weight: 900; font-size: 22px;
  line-height: 1.1; margin-bottom: 10px; text-transform: uppercase; letter-spacing: -.3px;
}
.card-generic h3 .y { color: var(--yel); }
.card-generic .desc { font-size: 14px; line-height: 1.6; color: #cfcfcf; margin-bottom: 14px; }
.card-generic .desc strong { color: var(--yel); font-weight: 700; }
.card-generic ul { list-style: none; margin-bottom: 14px; }
.card-generic ul li { font-size: 13px; color: #ddd; padding: 5px 0 5px 18px; position: relative; line-height: 1.5; }
.card-generic ul li::before { content: '◆'; position: absolute; left: 0; top: 7px; color: var(--yel); font-size: 9px; }
.card-generic .cta-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 900; font-size: 11px;
  color: var(--yel); letter-spacing: 2px; text-decoration: none;
  padding-top: 14px; border-top: 1px solid var(--bdr); margin-top: 6px;
  cursor: pointer;
}
.card-generic .cta-link::after { content: '→'; transition: transform .2s; }
.card-generic:hover .cta-link::after { transform: translateX(4px); }

/* ============== DORADZTWO SPLIT ============== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.split-content { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.split-title { font-family: var(--display); font-weight: 900; font-size: clamp(30px, 4.5vw, 48px); line-height: 1; letter-spacing: -.5px; text-transform: uppercase; }
.split-title .y { color: var(--yel); }
.split-tag {
  display: inline-block; font-family: var(--display); font-weight: 900; font-size: 13px;
  background: var(--white); color: var(--bg); letter-spacing: 2px; padding: 10px 18px; border-radius: 8px;
}
.split-tag.dark { background: var(--bg); color: var(--white); border: 1px solid var(--bdr); }
.split-tag .y { color: var(--yel); }
.split-content p { font-family: var(--body); font-weight: 500; font-size: 16px; line-height: 1.65; color: #e5e5e5; }
.split-content p.dim { color: #a8a8a8; font-size: 14px; line-height: 1.6; }
.split-visual {
  background: var(--panel); border: 1px solid var(--bdr); border-radius: 24px;
  padding: 48px 36px; min-height: 480px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.split-visual::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,222,89,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,222,89,.04) 1px, transparent 1px);
  background-size: 24px 24px; pointer-events: none;
}
.split-visual-inner { position: relative; z-index: 2; text-align: center; width: 100%; }
.visual-num {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(48px, 6.5vw, 84px); line-height: 1;
  letter-spacing: -2px; color: var(--yel);
}
.visual-num .yel { color: var(--yel); }
.visual-label {
  font-family: var(--display); font-weight: 900; font-size: 16px;
  letter-spacing: 4px; margin-top: 16px; color: var(--white);
}
.tags-row { margin-top: 24px; display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.tags-row span {
  font-family: var(--mono); font-size: 11px; padding: 6px 12px;
  border: 1px solid rgba(255,222,89,.3); border-radius: 999px;
  color: var(--yel); letter-spacing: 2px;
}
.stat-box {
  margin-top: 24px; padding: 16px 22px; background: rgba(255,222,89,.06);
  border: 1px solid rgba(255,222,89,.2); border-radius: 16px;
  display: inline-block;
}
.stat-box .num { font-family: var(--display); font-weight: 900; color: var(--yel); letter-spacing: 1px; font-size: 16px; }
.stat-box .txt { color: #d5d5d5; font-size: 13px; margin-top: 4px; }

/* ============== CTA FINAL ============== */
.cta-final {
  background: radial-gradient(ellipse at 50% 0%, rgba(255,222,89,.08), transparent 60%),
    linear-gradient(180deg, var(--panel), #1a1a1a);
  border-top: 3px solid var(--yel); padding: 70px 32px; text-align: center;
}
.cta-final h2 { font-family: var(--display); font-weight: 900; font-size: clamp(28px, 4vw, 44px); line-height: 1.05; margin-bottom: 18px; text-transform: uppercase; letter-spacing: -.5px; }
.cta-final h2 .y { color: var(--yel); }
.cta-final .text { font-family: var(--body); font-size: 16px; line-height: 1.6; color: #d5d5d5; margin-bottom: 32px; max-width: 620px; margin-left: auto; margin-right: auto; }

/* ============== LEAN FACTORY GAME SECTION ============== */
.game-section { background: var(--panel2); border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr); }

.game-card {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border: 2px solid var(--yel); border-radius: 28px;
  padding: 56px 40px; margin-bottom: 28px;
  position: relative; overflow: hidden;
  box-shadow: 0 0 0 6px rgba(255,222,89,.04), 0 24px 60px rgba(255,222,89,.06);
}
.game-card::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,222,89,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,222,89,.04) 1px, transparent 1px);
  background-size: 32px 32px; pointer-events: none;
}
.game-header { position: relative; z-index: 2; text-align: center; }
.game-kicker {
  font-family: var(--mono); font-size: 13px; color: var(--yel);
  letter-spacing: 6px; margin-bottom: 16px;
}
.game-title {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(48px, 8vw, 96px); line-height: .95;
  letter-spacing: -2px; margin-bottom: 16px;
  text-shadow: 0 4px 24px rgba(255,222,89,.2);
}
.game-tagline {
  font-family: var(--cond); font-weight: 600; font-style: italic;
  font-size: 18px; color: #b5b5b5; letter-spacing: 1px;
  margin-bottom: 28px;
}
.game-methods {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  max-width: 720px; margin: 0 auto;
}
.game-methods span {
  font-family: var(--cond); font-weight: 700; font-size: 16px;
  padding: 8px 18px; border-radius: 999px;
  background: rgba(255,222,89,.08); border: 1px solid rgba(255,222,89,.3);
  color: var(--yel); letter-spacing: 1px;
}

.game-pill { display: flex; flex-direction: column; gap: 28px; margin-bottom: 28px; }
.game-pill-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pill-stat { background: var(--panel2); border: 1px solid var(--bdr); border-radius: 16px; padding: 24px 16px; text-align: center; transition: border-color .25s, transform .25s; }
.pill-stat:hover { border-color: var(--yel); transform: translateY(-3px); }
.pill-stat-num { font-family: var(--display); font-weight: 900; font-size: clamp(36px, 4vw, 56px); color: var(--yel); line-height: 1; }
.pill-stat-lbl { font-family: var(--cond); font-size: 13px; color: #bbb; margin-top: 8px; line-height: 1.3; letter-spacing: .5px; text-transform: uppercase; }
@media (max-width: 720px) { .game-pill-stats { grid-template-columns: repeat(2, 1fr); } }
.game-pill-body { display: flex; flex-direction: column; gap: 16px; }
.game-pill-text { font-family: var(--body); font-size: 16px; line-height: 1.7; color: #d5d5d5; max-width: 880px; }
.game-pill-text strong { color: #fff; }
.game-pill-text .y { color: var(--yel); }
.game-pill-cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 4px; }
.game-pill-cta-row .btn-primary, .game-pill-cta-row .btn-secondary {
  display: inline-flex; align-items: center; padding: 16px 28px; font-family: var(--display);
  font-weight: 900; font-size: 13px; letter-spacing: 2px; text-decoration: none; border-radius: 12px;
  transition: transform .2s, background .2s; cursor: pointer;
}
.game-pill-cta-row .btn-primary { background: var(--yel); color: var(--bg); border: none; }
.game-pill-cta-row .btn-primary:hover { transform: translateX(4px); }
.game-pill-cta-row .btn-secondary { background: transparent; color: var(--white); border: 2px solid var(--bdr); }
.game-pill-cta-row .btn-secondary:hover { border-color: var(--yel); color: var(--yel); }

.game-scenarios { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.scenario-card {
  background: var(--panel); border: 1px solid var(--bdr); border-radius: 20px;
  padding: 18px 22px;
  display: grid; grid-template-columns: 56px 1fr 56px; gap: 16px; align-items: center;
  transition: border-color .25s, transform .25s;
  border-left: 3px solid var(--yel);
}
.scenario-card:hover { border-color: var(--yel); transform: translateX(4px); }
.scenario-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(255,222,89,.08); border: 1px solid rgba(255,222,89,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; line-height: 1;
}
.scenario-body { display: flex; flex-direction: column; gap: 4px; }
.scenario-tag { font-family: var(--mono); font-size: 10px; color: var(--yel); letter-spacing: 2.5px; }
.scenario-title { font-family: var(--display); font-weight: 900; font-size: 16px; letter-spacing: -.2px; text-transform: uppercase; }
.scenario-detail { font-family: var(--body); font-size: 13px; line-height: 1.55; color: #bbb; }
.scenario-cta {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--yel); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; cursor: pointer;
  transition: transform .25s;
}
.scenario-cta:hover { transform: scale(1.08); }
@media (max-width: 600px) {
  .scenario-card { grid-template-columns: 48px 1fr; gap: 12px; padding: 16px; }
  .scenario-cta { display: none; }
  .scenario-icon { width: 48px; height: 48px; font-size: 24px; }
}

.game-benefits {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
@media (max-width: 700px) { .game-benefits { grid-template-columns: 1fr; } }
.benefit {
  display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start;
  background: var(--panel); border: 1px solid var(--bdr); border-radius: 14px;
  padding: 16px 18px;
}
.benefit-num {
  font-family: var(--display); font-weight: 900; font-size: 20px;
  color: var(--yel); line-height: 1;
}
.benefit-text { font-family: var(--body); font-size: 14px; line-height: 1.55; color: #ddd; }
.benefit-text strong { color: #fff; }

/* ============== DASHBOARD IFRAME ============== */
.dashboard-frame {
  background: var(--panel); border: 1px solid var(--bdr); border-radius: 24px;
  overflow: hidden; border-top: 3px solid var(--yel);
  box-shadow: 0 16px 48px rgba(255,222,89,.04);
}
.dashboard-frame iframe {
  display: block; width: 100%; height: 980px;
  border: none; background: var(--bg);
}
@media (max-width: 1020px) and (min-width: 841px) { .dashboard-frame iframe { height: 1080px; } }
@media (max-width: 840px) and (min-width: 701px) { .dashboard-frame iframe { height: 1520px; } }
@media (max-width: 700px) { .dashboard-frame iframe { height: 1700px; } }

/* ============== PROCES DISCOVER & CTA ============== */
.proces-discover {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 36px; margin-bottom: 28px;
}
@media (max-width: 800px) { .proces-discover { grid-template-columns: 1fr; } }

.discover-card {
  background: var(--panel); border: 1px solid var(--bdr); border-radius: 16px;
  padding: 22px 24px;
  border-left: 3px solid var(--yel);
  transition: border-color .25s, transform .25s;
}
.discover-card:hover {
  border-color: var(--yel); transform: translateX(4px);
}
.discover-num {
  font-family: var(--display); font-weight: 900;
  font-size: 13px; color: var(--yel); letter-spacing: 3px;
  margin-bottom: 8px;
}
.discover-title {
  font-family: var(--display); font-weight: 900;
  font-size: 16px; color: #fff; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 10px;
}
.discover-text {
  font-family: var(--body); font-size: 13px; line-height: 1.55;
  color: #b8b8b8; margin: 0;
}

.proces-cta {
  background: var(--panel2); border: 1px solid var(--bdr); border-radius: 18px;
  padding: 28px 36px;
  border-top: 3px solid var(--yel);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center;
}
.proces-cta-kicker {
  font-family: var(--mono); font-size: 11px; color: var(--yel);
  letter-spacing: 3px;
}
.proces-cta-text {
  font-family: var(--body); font-size: 15px; line-height: 1.6;
  color: #ddd; max-width: 600px; margin: 0;
}

/* ============== KPI · MAPA WDROŻENIA · LETTERS GRID ============== */
.kpi-letters-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 28px; margin-bottom: 24px;
  align-items: stretch;
}
@media (max-width: 900px) { .kpi-letters-grid { grid-template-columns: 1fr; } }

.kpi-letter-card {
  background: var(--panel); border: 1px solid var(--bdr); border-radius: 18px;
  padding: 18px 20px; display: flex; flex-direction: column; gap: 14px;
  border-top: 3px solid var(--yel);
  animation: fadeUp .6s ease both;
}
.kpi-letter-card:nth-child(1) { animation-delay: .1s; }
.kpi-letter-card:nth-child(2) { animation-delay: .2s; }
.kpi-letter-card:nth-child(3) { animation-delay: .3s; }

.kpi-letter-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 8px; border-bottom: 1px solid var(--bdr);
}
.kpi-letter-tag {
  font-family: var(--mono); font-size: 10px; color: var(--yel);
  letter-spacing: 2.5px;
}
.kpi-letter-meta {
  font-family: var(--mono); font-size: 9px; color: var(--lgray);
  letter-spacing: 1.5px;
}

.kpi-letter-grid {
  display: flex; flex-direction: column; gap: 4px;
  margin: 0 auto; align-items: center;
  flex: 1; justify-content: flex-end;
  min-height: 316px;
}
@media (max-width: 700px) { .kpi-letter-grid { min-height: 284px; } }
.kpi-row {
  display: flex; flex-direction: row; gap: 4px;
}
.kpi-cell {
  width: 36px; height: 36px; flex: 0 0 36px;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Arial Black', sans-serif; font-weight: 900;
  font-size: 11px; letter-spacing: 0;
  transition: transform .2s, box-shadow .2s;
}
@media (max-width: 700px) { .kpi-cell { width: 32px; height: 32px; flex-basis: 32px; font-size: 10px; } }
.kpi-cell:hover:not(.empty) { transform: scale(1.15); z-index: 2; box-shadow: 0 4px 12px rgba(0,0,0,.4); }
.kpi-cell.empty { background: transparent; }
.kpi-cell.green { background: var(--green); color: rgba(0,0,0,.7); box-shadow: inset 0 -2px 0 rgba(0,0,0,.15); }
.kpi-cell.amber { background: var(--amber); color: rgba(0,0,0,.7); box-shadow: inset 0 -2px 0 rgba(0,0,0,.15); }
.kpi-cell.red {
  background: var(--red); color: #fff;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,.2), 0 0 8px rgba(239,68,68,.4);
  animation: kpi-pulse 2s ease-in-out infinite;
}
.kpi-cell.filler {
  background: var(--green);
  color: rgba(0,0,0,.45);
  box-shadow: inset 0 -2px 0 rgba(0,0,0,.15);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  position: relative;
}
.kpi-cell.filler::after {
  content: '·';
  font-size: 22px;
  line-height: 0;
  opacity: .4;
}
@media (max-width: 700px) { .kpi-cell.filler { width: 32px; height: 32px; } }
@keyframes kpi-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .85; } }

.kpi-letter-foot {
  display: flex; justify-content: space-around;
  padding-top: 8px; border-top: 1px solid var(--bdr);
}
.kpi-stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.kpi-stat-num {
  font-family: 'Arial Black', sans-serif; font-weight: 900; font-size: 20px;
  line-height: 1;
}
.kpi-stat-num.green { color: var(--green); }
.kpi-stat-num.amber { color: var(--amber); }
.kpi-stat-num.red { color: var(--red); }
.kpi-stat-lbl {
  font-family: var(--mono); font-size: 8px; color: var(--lgray);
  letter-spacing: 1.5px;
}

.kpi-summary-bar {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 14px;
  padding: 18px 24px;
  background: var(--panel2); border: 1px solid var(--bdr); border-radius: 18px;
  border-left: 3px solid var(--yel);
}
@media (max-width: 700px) { .kpi-summary-bar { grid-template-columns: 1fr 1fr; } }

.kpi-sum-item {
  display: flex; flex-direction: column; gap: 4px;
  padding: 4px 0;
}
.kpi-sum-num {
  font-family: 'Arial Black', sans-serif; font-weight: 900;
  font-size: 32px; color: var(--yel); line-height: 1;
  letter-spacing: -1px;
}
.kpi-sum-num .pct { font-size: 18px; opacity: .7; margin-left: 2px; }
.kpi-sum-num.green { color: var(--green); }
.kpi-sum-num.amber { color: var(--amber); }
.kpi-sum-num.red { color: var(--red); }
.kpi-sum-lbl {
  font-family: var(--mono); font-size: 10px; color: var(--lgray);
  letter-spacing: 2px; margin-top: 2px;
}

/* ============== FOUNDER CARD ============== */
.founder-card {
  display: grid; grid-template-columns: 280px 1fr; gap: 36px; align-items: center;
  background: var(--panel); border: 1px solid var(--bdr); border-radius: 24px;
  padding: 40px; border-top: 3px solid var(--yel);
}
@media (max-width: 800px) { .founder-card { grid-template-columns: 1fr; gap: 24px; padding: 28px; } }
.founder-photo {
  width: 280px; height: 280px; border-radius: 20px; overflow: hidden;
  background: linear-gradient(135deg, rgba(255,222,89,.15), transparent 60%), var(--panel2);
  border: 1px solid var(--bdr);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
@media (max-width: 800px) { .founder-photo { width: 180px; height: 180px; margin: 0 auto; } }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-photo.placeholder::after {
  content: 'AF'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 900; font-size: 96px;
  color: var(--yel); letter-spacing: -4px;
}
.founder-info { display: flex; flex-direction: column; gap: 12px; }
.founder-tag {
  display: inline-block; align-self: flex-start;
  font-family: var(--mono); font-size: 10px; color: var(--yel);
  letter-spacing: 3px; padding: 5px 12px;
  border: 1px solid rgba(255,222,89,.3); border-radius: 999px;
  background: rgba(255,222,89,.04);
}
.founder-name {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(28px, 4vw, 40px); line-height: 1; letter-spacing: -.5px;
  text-transform: uppercase;
}
.founder-role {
  font-family: var(--display); font-weight: 900; font-size: 12px;
  letter-spacing: 2.5px; color: var(--yel);
}
.founder-bio { font-family: var(--body); font-weight: 500; font-size: 15px; line-height: 1.6; color: #e0e0e0; margin-top: 4px; }
.founder-bio.dim { color: #b0b0b0; font-size: 14px; }
.founder-bio .y { color: var(--yel); font-weight: 700; }
.founder-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 6px; }
.founder-tags span {
  font-family: var(--mono); font-size: 10px; padding: 5px 10px;
  border: 1px solid rgba(255,222,89,.25); border-radius: 999px;
  color: #ddd; letter-spacing: 1.5px;
}
.founder-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }

/* ============== O NAS PAGE ============== */
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 56px; }
@media (max-width: 700px) { .about-stats { grid-template-columns: repeat(2, 1fr); } }
.about-stat {
  background: var(--panel); border: 1px solid var(--bdr); border-radius: 20px;
  padding: 28px 22px; text-align: center; transition: border-color .25s;
}
.about-stat:hover { border-color: var(--yel); }
.about-stat .num { font-family: var(--display); font-weight: 900; font-size: clamp(36px, 5vw, 56px); color: var(--yel); line-height: 1; }
.about-stat .label { font-family: var(--display); font-weight: 900; font-size: 11px; letter-spacing: 2.5px; color: #fff; margin-top: 10px; }

.timeline-grid { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 920px; margin: 0 auto; }
.tl-item {
  display: grid; grid-template-columns: 90px 1fr; gap: 22px;
  background: var(--panel); border: 1px solid var(--bdr); border-radius: 20px;
  border-left: 3px solid var(--yel); padding: 22px 26px;
  transition: border-color .25s, transform .25s;
}
.tl-item:hover { border-color: var(--yel); transform: translateX(4px); }
.tl-item.featured { background: linear-gradient(135deg, rgba(255,222,89,.06), transparent 60%), var(--panel); border-left-color: var(--yel); }
.tl-year { font-family: var(--display); font-weight: 900; font-size: 22px; color: var(--yel); line-height: 1.1; }
.tl-content h4 { font-family: var(--display); font-weight: 900; font-size: 16px; letter-spacing: 1px; margin-bottom: 6px; text-transform: uppercase; }
.tl-content h4 .y { color: var(--yel); }
.tl-content p { font-size: 14px; line-height: 1.55; color: #cfcfcf; }
@media (max-width: 600px) { .tl-item { grid-template-columns: 1fr; gap: 6px; } }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .value-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--panel); border: 1px solid var(--bdr); border-radius: 20px;
  padding: 28px 24px; transition: border-color .25s, transform .25s;
}
.value-card:hover { border-color: var(--yel); transform: translateY(-3px); }
.value-card .icon-box {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(255,222,89,.08); border: 1px solid rgba(255,222,89,.2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.value-card .icon-box svg { width: 26px; height: 26px; }
.value-card h4 { font-family: var(--display); font-weight: 900; font-size: 18px; letter-spacing: -.2px; margin-bottom: 10px; text-transform: uppercase; }
.value-card h4 .y { color: var(--yel); }
.value-card p { font-size: 14px; line-height: 1.6; color: #cfcfcf; }

/* ============== USŁUGI / OFERTA ============== */
.uslugi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .uslugi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .uslugi-grid { grid-template-columns: 1fr; } }
.usluga {
  background: var(--panel); border: 1px solid var(--bdr); border-radius: 20px;
  padding: 28px 24px; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.usluga:hover { border-color: var(--yel); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(255,222,89,.06); }
.usluga::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--yel); transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.8,.3,1);
}
.usluga:hover::before { transform: scaleX(1); }
.usluga-num { position: absolute; top: 22px; right: 22px; font-family: var(--display); font-weight: 900; font-size: 28px; color: var(--bdr); line-height: 1; }
.usluga-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(255,222,89,.08); border: 1px solid var(--bdr);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.usluga-icon svg { width: 26px; height: 26px; }
.usluga-title { font-family: var(--display); font-weight: 900; font-size: 19px; line-height: 1.1; margin-bottom: 6px; text-transform: uppercase; letter-spacing: -.2px; }
.usluga-title .y { color: var(--yel); }
.usluga-tag { font-family: var(--mono); font-size: 10px; color: var(--lgray); letter-spacing: 2px; margin-bottom: 14px; }
.usluga-desc { font-size: 14px; line-height: 1.55; color: #bbb; margin-bottom: 16px; flex: 1; }
.usluga-bullets { list-style: none; margin-bottom: 18px; }
.usluga-bullets li { font-size: 13px; color: #ddd; padding: 4px 0 4px 16px; position: relative; line-height: 1.5; }
.usluga-bullets li::before { content: '◆'; position: absolute; left: 0; color: var(--yel); font-size: 8px; top: 7px; }
.usluga-cta { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 900; font-size: 11px; color: var(--yel); letter-spacing: 2px; padding-top: 12px; border-top: 1px solid var(--bdr); cursor: pointer; }
.usluga-cta::after { content: '→'; transition: transform .25s; }
.usluga:hover .usluga-cta::after { transform: translateX(4px); }

/* ============== BLOG ============== */
.filters { background: var(--panel2); padding: 24px 32px; border-bottom: 1px solid var(--bdr); }
.filters-inner { max-width: 1280px; margin: 0 auto; display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.filters-label { font-family: var(--mono); font-size: 10px; color: var(--lgray); letter-spacing: 3px; margin-right: 8px; }
.filter-pill {
  font-family: var(--display); font-weight: 900; font-size: 11px;
  color: var(--white); letter-spacing: 1.5px; padding: 8px 16px; border-radius: 999px;
  background: var(--panel); border: 1px solid var(--bdr); cursor: pointer;
  transition: border-color .25s, background .25s, color .25s;
}
.filter-pill:hover { border-color: var(--yel); color: var(--yel); }
.filter-pill.active { background: var(--yel); color: var(--bg); border-color: var(--yel); }
.articles-meta {
  display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 24px;
  font-family: var(--mono); font-size: 11px; color: var(--lgray); letter-spacing: 2px; max-width: 1280px; margin-left: auto; margin-right: auto;
}
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1280px; margin: 0 auto; }
@media (max-width: 1100px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: var(--panel); border: 1px solid var(--bdr); border-radius: 20px;
  overflow: hidden; display: flex; flex-direction: column;
  text-decoration: none; color: inherit; position: relative; cursor: pointer;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  animation: fadeUp .6s ease both;
}
.blog-card:hover { border-color: var(--yel); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(255,222,89,.06); }
.thumb {
  height: 180px; position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 20% 20%, rgba(255,222,89,.10), transparent 50%),
    linear-gradient(135deg, rgba(255,222,89,.06), transparent 60%), var(--panel2);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--bdr);
}
.thumb-pattern {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,222,89,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,222,89,.04) 1px, transparent 1px);
  background-size: 26px 26px;
}
.thumb-corner { position: absolute; top: 14px; left: 16px; font-family: var(--mono); font-size: 9px; color: rgba(255,222,89,.5); letter-spacing: 2px; }
.thumb-corner.right { left: auto; right: 16px; text-align: right; }
.thumb-icon {
  position: relative; z-index: 1; width: 72px; height: 72px; border-radius: 18px;
  background: rgba(0,0,0,.7); border: 1px solid rgba(255,222,89,.35);
  display: flex; align-items: center; justify-content: center;
}
.thumb-icon svg { width: 36px; height: 36px; }
.blog-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; gap: 10px; margin-bottom: 12px; font-family: var(--mono); font-size: 10px; color: var(--lgray); letter-spacing: 2px; }
.blog-meta .cat { color: var(--yel); }
.blog-meta span:not(:last-child)::after { content: '·'; margin-left: 10px; color: var(--gray); }
.blog-card-title { font-family: var(--display); font-weight: 900; font-size: 18px; line-height: 1.2; letter-spacing: .2px; margin-bottom: 10px; text-transform: none; }
.blog-card-lead { font-size: 13px; line-height: 1.55; color: #bbb; margin-bottom: 16px; flex: 1; }
.blog-card-cta { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 900; font-size: 10px; color: var(--yel); letter-spacing: 2.5px; padding-top: 12px; border-top: 1px solid var(--bdr); }
.blog-card-cta::after { content: '→'; transition: transform .25s; }
.blog-card:hover .blog-card-cta::after { transform: translateX(4px); }

.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; padding: 40px; }
.page-btn {
  font-family: var(--display); font-weight: 900; font-size: 12px;
  color: var(--white); letter-spacing: 1px; width: 40px; height: 40px;
  border-radius: 12px; background: var(--panel); border: 1px solid var(--bdr);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: border-color .25s, color .25s;
}
.page-btn:hover { border-color: var(--yel); color: var(--yel); }
.page-btn.active { background: var(--yel); color: var(--bg); border-color: var(--yel); }

/* ============== ARTYKUL VIEW ============== */
.article-body { max-width: 760px; margin: 0 auto; padding: 56px 24px 70px; }
.article-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11px; color: var(--lgray);
  letter-spacing: 2px; padding: 14px 0; border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr);
  margin-bottom: 32px;
}
.article-meta span:not(:last-child)::after { content: '·'; margin-left: 16px; color: var(--gray); }
.article-body h2 { font-family: var(--display); font-weight: 900; font-size: 24px; letter-spacing: .3px; margin: 36px 0 14px; display: flex; align-items: center; gap: 12px; text-transform: uppercase; }
.article-body h2 .num { font-family: var(--mono); font-size: 12px; color: var(--yel); letter-spacing: 2px; padding: 4px 10px; border: 1px solid rgba(255,222,89,.3); border-radius: 8px; background: rgba(255,222,89,.04); }
.article-body p { font-size: 16px; line-height: 1.75; color: #ccc; margin-bottom: 14px; }
.article-body p strong { color: var(--white); }
.article-body p .y { color: var(--yel); font-weight: 600; }
.article-body .lead { font-family: var(--body); font-weight: 500; font-size: 17px; line-height: 1.6; color: #e8e8e8; border-left: 3px solid var(--yel); padding: 4px 0 4px 18px; margin-bottom: 32px; }
.callout { background: var(--panel); border: 1px solid var(--bdr); border-left: 3px solid var(--yel); border-radius: 20px; padding: 22px 26px; margin: 28px 0; }
.callout-kicker { font-family: var(--mono); font-size: 10px; color: var(--yel); letter-spacing: 3px; margin-bottom: 8px; }
.callout-text { font-family: var(--cond); font-weight: 900; font-style: italic; font-size: 20px; line-height: 1.35; color: var(--white); }
.article-body h3 { font-family: var(--display); font-weight: 900; font-size: 17px; letter-spacing: .3px; margin: 28px 0 10px; color: var(--white); text-transform: uppercase; }
.article-body ul, .article-body ol { margin: 0 0 18px 22px; padding: 0; }
.article-body li { font-size: 16px; line-height: 1.7; color: #ccc; margin-bottom: 10px; }
.article-body li strong { color: var(--white); }
.article-body li::marker { color: var(--yel); font-weight: 700; }
.article-body a { color: var(--yel); text-decoration: none; border-bottom: 1px solid rgba(255,222,89,.35); }
.article-body a:hover { border-bottom-color: var(--yel); }
.table-wrap { overflow-x: auto; margin: 24px 0 18px; border: 1px solid var(--bdr); border-radius: 16px; background: var(--panel); -webkit-overflow-scrolling: touch; }
.table-wrap table { width: 100%; border-collapse: collapse; min-width: 620px; }
.table-wrap th { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; color: var(--yel); text-transform: uppercase; text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--bdr); background: rgba(255,222,89,.04); white-space: nowrap; }
.table-wrap td { font-size: 14px; line-height: 1.55; color: #ccc; padding: 13px 16px; border-bottom: 1px solid rgba(34,34,34,.8); vertical-align: top; }
.table-wrap tbody tr:last-child td { border-bottom: none; }
.table-wrap tbody tr:hover td { background: rgba(255,255,255,.02); }
.table-wrap td:first-child { color: var(--white); font-weight: 600; }
.table-hint { display: none; font-family: var(--mono); font-size: 10px; color: var(--lgray); letter-spacing: 2px; margin: -8px 0 20px; }
@media (max-width: 760px) { .table-hint { display: block; } }
.sources { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--bdr); }
.sources-kicker { font-family: var(--mono); font-size: 10px; color: var(--yel); letter-spacing: 3px; margin-bottom: 12px; }
.sources ul { margin: 0 0 0 20px; }
.sources li { font-size: 13px; line-height: 1.6; color: #999; margin-bottom: 8px; }


/* ============== KONTAKT ============== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: var(--panel); border: 1px solid var(--bdr); border-radius: 18px;
  padding: 18px 20px; display: flex; align-items: center; gap: 16px;
  text-decoration: none; color: var(--white);
  transition: border-color .25s, transform .25s;
}
.contact-card:hover { border-color: var(--yel); transform: translateX(4px); }
.contact-card .icon-box {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,222,89,.08); border: 1px solid rgba(255,222,89,.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-card .icon-box svg { width: 22px; height: 22px; display: block; }
.contact-card .info-text { display: flex; flex-direction: column; }
.contact-card .info-label { font-family: var(--mono); font-size: 10px; color: var(--lgray); letter-spacing: 2px; }
.contact-card .info-val { font-family: var(--display); font-weight: 900; font-size: 14px; color: var(--white); margin-top: 2px; }

.form-card {
  background: var(--panel); border: 1px solid var(--bdr); border-radius: 20px;
  padding: 30px; border-top: 3px solid var(--yel);
}
.form-card h3 { font-family: var(--display); font-weight: 900; font-size: 22px; margin-bottom: 18px; text-transform: uppercase; letter-spacing: -.3px; }
.form-card .form-row { margin-bottom: 14px; }
.form-card label { display: block; font-family: var(--mono); font-size: 10px; color: var(--lgray); letter-spacing: 2px; margin-bottom: 6px; }
.form-card input, .form-card textarea {
  width: 100%; padding: 12px 14px; background: var(--panel2);
  border: 1px solid var(--bdr); border-radius: 10px; color: var(--white);
  font-family: var(--body); font-size: 14px; transition: border-color .2s;
}
.form-card input:focus, .form-card textarea:focus { outline: none; border-color: var(--yel); }
.form-card textarea { resize: vertical; min-height: 100px; }
.form-card .submit-row { margin-top: 18px; }
.form-success {
  display: none; padding: 14px 18px; background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.3); border-radius: 10px;
  color: var(--green); font-family: var(--display); font-size: 12px; letter-spacing: 1px; margin-top: 14px;
}
.form-success.show { display: block; }

/* ============== SZKOLENIA PAGE EXTRAS ============== */
.role-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 22px; }
@media (max-width: 900px) { .role-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .role-grid { grid-template-columns: 1fr; } }
.role {
  background: var(--panel2); border: 1px solid var(--bdr); border-radius: 16px;
  padding: 20px 18px; transition: border-color .25s;
}
.role:hover { border-color: var(--yel); }
.role-num { font-family: var(--display); font-weight: 900; font-size: 22px; color: var(--yel); line-height: 1; margin-bottom: 10px; }
.role-title { font-family: var(--display); font-weight: 900; font-size: 13px; line-height: 1.15; letter-spacing: .3px; margin-bottom: 8px; min-height: 32px; text-transform: uppercase; }
.role-desc { font-size: 11px; line-height: 1.5; color: #bbb; }

.method-card {
  background: var(--panel); border: 1px solid var(--bdr); border-radius: 20px;
  padding: 26px 22px; position: relative; overflow: hidden;
}
.method-card.featured {
  background: radial-gradient(ellipse at 100% 0%, rgba(255,222,89,.08), transparent 50%), var(--panel);
  border-color: rgba(255,222,89,.3);
}
.method-tag {
  display: inline-block; font-family: var(--mono); font-size: 10px; color: var(--yel);
  letter-spacing: 2.5px; padding: 4px 12px;
  border: 1px solid rgba(255,222,89,.3); border-radius: 999px;
  background: rgba(255,222,89,.04); margin-bottom: 14px;
}
.method-card h3 { font-family: var(--display); font-weight: 900; font-size: 22px; line-height: 1.1; margin-bottom: 10px; text-transform: uppercase; letter-spacing: -.3px; }
.method-card h3 .y { color: var(--yel); }
.method-card p { font-size: 14px; line-height: 1.6; color: #cfcfcf; margin-bottom: 12px; }
.method-card ul { list-style: none; }
.method-card ul li { font-size: 13px; color: #ddd; padding: 5px 0 5px 18px; position: relative; line-height: 1.5; }
.method-card ul li::before { content: '◆'; position: absolute; left: 0; top: 7px; color: var(--yel); font-size: 9px; }
.methods-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 36px; }
@media (max-width: 768px) { .methods-2col { grid-template-columns: 1fr; } }
.ai-block { background: var(--panel); border: 1px solid var(--bdr); border-radius: 20px; padding: 32px 26px; margin-top: 24px; position: relative; overflow: hidden; border-top: 3px solid var(--yel); }

/* ============== STOPKA ============== */
.footer { background: var(--bg); border-top: 1px solid var(--bdr); padding: 38px 32px 22px; position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--yel) 0%, var(--yel) 30%, transparent 30%, transparent 50%, var(--yel) 50%, var(--yel) 60%, transparent 60%); }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; padding-bottom: 22px; margin-bottom: 22px; border-bottom: 1px solid var(--bdr); }
.footer-logo img { height: 28px; }
.footer-tagline { font-family: var(--mono); font-size: 10px; color: var(--lgray); letter-spacing: 2px; margin-top: 4px; }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a { font-family: var(--display); font-weight: 900; font-size: 11px; color: var(--white); letter-spacing: 2px; text-decoration: none; cursor: pointer; transition: color .2s; }
.footer-nav a:hover { color: var(--yel); }
.footer-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 22px; }
@media (max-width: 900px) { .footer-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .footer-cards { grid-template-columns: 1fr; } }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--bdr); flex-wrap: wrap; gap: 12px; }
.footer-copy { font-family: var(--mono); font-size: 10px; color: var(--gray); letter-spacing: 2px; }
.footer-copy span { color: var(--yel); }
.social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--bdr);
  transition: border-color .25s; text-decoration: none;
}
.social-btn:hover { border-color: var(--yel); }

/* ============== UTILITY ============== */
.demo-banner {
  position: fixed; bottom: 16px; right: 16px; z-index: 200;
  background: var(--yel); color: var(--bg);
  font-family: var(--display); font-weight: 900; font-size: 10px;
  letter-spacing: 2px; padding: 8px 14px; border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
  pointer-events: none;
}
.svg-wrap { width: 100%; max-width: 1200px; margin: 0 auto; }
.svg-wrap svg { width: 100%; height: auto; display: block; }
