/*
Theme Name: PlanujGrafik
Description: Motyw marketingowy dla platformy PlanujGrafik
Version: 1.0.0
Author: PlanujGrafik
Text Domain: planujgrafik
*/

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #111827;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── CSS Variables (brand palette) ── */
:root {
  --brand-50:  #eff6ff;
  --brand-100: #dbeafe;
  --brand-200: #bfdbfe;
  --brand-300: #93c5fd;
  --brand-400: #60a5fa;
  --brand-500: #4285f4;
  --brand-600: #2b6cd4;
  --brand-700: #1a56b5;
  --brand-800: #0f3d8a;
  --brand-900: #0a2a5e;
  --brand-950: #061830;
  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

/* ── Layout Containers ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Sections ── */
.section { padding: 5rem 1.5rem; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: var(--brand-50);
  color: var(--brand-700);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--brand-900);
  line-height: 1.2;
  max-width: 680px;
}
.section-subtitle {
  color: var(--gray-500);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 580px;
  margin-top: 0.75rem;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: var(--brand-700);
  color: #fff;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.9375rem;
  transition: all .2s;
  border: none;
  box-shadow: 0 4px 14px rgba(26,86,181,.25);
}
.btn-primary:hover { background: var(--brand-800); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,86,181,.35); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: var(--brand-700);
  border: 2px solid var(--brand-700);
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.9375rem;
  transition: all .2s;
}
.btn-outline:hover { background: var(--brand-50); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.875rem;
  color: var(--gray-700);
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all .15s;
  background: transparent;
  border: none;
}
.btn-ghost:hover { background: var(--gray-100); color: var(--brand-700); }

.btn-white-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #fff;
  color: var(--brand-700);
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  transition: all .2s;
  border: none;
}
.btn-white-hero:hover { box-shadow: 0 12px 32px rgba(0,0,0,.3); transform: translateY(-2px); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  transition: all .2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,.2); }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 1px 8px rgba(0,0,0,.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  color: var(--gray-900);
}
.site-logo img { width: 36px; height: 36px; border-radius: 8px; }
.site-logo-name { font-weight: 800; font-size: 1.125rem; letter-spacing: -0.02em; }

.nav-primary { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  padding: 0.5rem 0.875rem;
  color: var(--gray-700);
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all .15s;
}
.nav-link:hover { background: var(--gray-100); color: var(--brand-700); }
.nav-link.active { color: var(--brand-700); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.btn-login {
  padding: 0.5rem 1rem;
  color: var(--brand-700);
  border: 1.5px solid var(--brand-200);
  border-radius: 0.625rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all .15s;
  background: transparent;
}
.btn-login:hover { background: var(--brand-50); }
.btn-try {
  padding: 0.5rem 1rem;
  background: var(--brand-700);
  color: #fff;
  border-radius: 0.625rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all .15s;
  border: none;
}
.btn-try:hover { background: var(--brand-800); }

/* Mobile hamburger */
.hamburger-btn {
  display: none;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  border-radius: 0.5rem;
  color: var(--gray-700);
}
.hamburger-btn:hover { background: var(--gray-100); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1.5rem 1.25rem;
  border-top: 1px solid var(--gray-100);
  background: #fff;
}
.mobile-menu.open { display: flex; }
.mobile-menu a, .mobile-menu button {
  padding: 0.625rem 0;
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.9375rem;
  background: transparent;
  border: none;
  text-align: left;
  transition: color .15s;
}
.mobile-menu a:hover { color: var(--brand-600); }
.mobile-menu-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}

/* ── Hero ── */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a2a5e 0%, #1a56b5 50%, #4285f4 100%);
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 0);
  background-size: 32px 32px;
}
.hero-blob-1 {
  position: absolute;
  top: -10rem;
  right: -10rem;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(80px);
  background: #60a5fa;
  pointer-events: none;
}
.hero-blob-2 {
  position: absolute;
  bottom: -8rem;
  left: -8rem;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(80px);
  background: #93c5fd;
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 1.5rem 7rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.3)} }

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: 1.125rem;
  color: #bfdbfe;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 3rem;
  color: #bfdbfe;
  font-size: 0.85rem;
}
.hero-stats-divider { width: 1px; height: 20px; background: rgba(255,255,255,.2); }
.hero-stat-num { color: #fff; font-weight: 800; font-size: 1.25rem; margin-right: 0.25rem; }

.hero-logo-box {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}
.hero-logo-inner {
  position: relative;
}
.hero-logo-glow {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  filter: blur(60px);
  opacity: 0.4;
  background: #4285f4;
  transform: scale(1.2);
}
.hero-logo-card {
  position: relative;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 1.5rem;
  padding: 2.5rem;
  backdrop-filter: blur(8px);
}
.hero-logo-card img { width: 160px; height: 160px; filter: drop-shadow(0 8px 32px rgba(0,0,0,.4)); }

/* Hero - laptop + telefon */
.hero-devices-box {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}
.hero-devices {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  /* powiększenie wizualne bez wpływu na wysokość sekcji */
  transform: scale(1.3);
  transform-origin: center;
}
.hero-devices-glow {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  filter: blur(60px);
  opacity: 0.4;
  background: #4285f4;
  transform: scale(1.1);
}
.hero-laptop { position: relative; width: 340px; flex-shrink: 0; }
.hero-laptop-frame {
  position: relative;
  background: #0f172a;
  border: 1px solid rgba(255,255,255,.25);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  padding: 12px 12px 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.hero-laptop-frame img { width: 100%; height: auto; display: block; border-radius: 6px; }
.hero-laptop-bottom {
  height: 13px;
  margin: 0 -22px;
  background: linear-gradient(180deg, #e2e8f0, #94a3b8);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}
.hero-laptop-bottom::after {
  content: "";
  display: block;
  width: 84px;
  height: 5px;
  margin: 0 auto;
  background: #64748b;
  border-radius: 0 0 8px 8px;
}
.hero-phone {
  position: relative;
  width: 110px;
  flex-shrink: 0;
  background: #0f172a;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 20px;
  padding: 6px;
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.hero-phone img { width: 100%; height: auto; display: block; border-radius: 16px; }

/* ── Features ── */
.features { background: var(--gray-50); }
.features-header { text-align: center; margin-bottom: 3.5rem; }
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.feature-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 1px 6px rgba(0,0,0,.05);
  border: 1px solid var(--gray-100);
  transition: all .2s;
}
.feature-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.08); transform: translateY(-2px); }
.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.feature-title { font-size: 1.0625rem; font-weight: 700; color: var(--brand-900); margin-bottom: 0.5rem; }
.feature-desc { color: var(--gray-500); font-size: 0.875rem; line-height: 1.65; }
.features-more { text-align: center; margin-top: 2.5rem; }

/* ── How It Works ── */
.how-it-works { background: #fff; }
.how-header { text-align: center; margin-bottom: 3.5rem; }
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; position: relative; }
.steps-line-desktop { display: none; position: absolute; }
.step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.step-num {
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #4285f4, #1a56b5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(26,86,181,.3);
  margin-bottom: 1.25rem;
}
.step-title { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; }
.step-desc { color: var(--gray-500); font-size: 0.875rem; line-height: 1.65; }

/* ── Industries ── */
.industries { background: var(--gray-50); }
.industries-header { text-align: center; margin-bottom: 3.5rem; }
.industries-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.industry-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid var(--gray-100);
  box-shadow: 0 1px 6px rgba(0,0,0,.04);
  transition: all .2s;
}
.industry-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.08); transform: translateY(-2px); }
.industry-icon { font-size: 3rem; margin-bottom: 1rem; }
.industry-title { font-size: 1.25rem; font-weight: 700; color: var(--brand-900); margin-bottom: 0.75rem; }
.industry-desc { color: var(--gray-500); font-size: 0.9375rem; line-height: 1.65; margin-bottom: 1.25rem; }
.industry-link { color: var(--brand-600); font-weight: 600; font-size: 0.9375rem; }
.industry-link:hover { color: var(--brand-800); }

/* ── Testimonials ── */
.testimonials { background: var(--gray-50); }
.testimonials-header { text-align: center; margin-bottom: 3.5rem; }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.testimonial-card {
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid var(--gray-100);
  box-shadow: 0 1px 6px rgba(0,0,0,.04);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all .2s;
}
.testimonial-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.08); transform: translateY(-2px); }
.testimonial-quote-mark { font-size: 3.5rem; font-family: Georgia, serif; line-height: 1; color: var(--brand-100); margin-bottom: 0.75rem; }
.testimonial-text { color: var(--gray-700); font-size: 0.9375rem; line-height: 1.7; flex: 1; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; padding-top: 1.25rem; border-top: 1px solid var(--gray-100); }
.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a56b5, #4285f4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-info { min-width: 0; }
.testimonial-name { font-weight: 700; font-size: 0.875rem; color: var(--brand-900); }
.testimonial-position { font-size: 0.75rem; color: var(--gray-400); }
.testimonial-industry { margin-left: auto; font-size: 1.25rem; flex-shrink: 0; }
.testimonial-stars { display: flex; gap: 2px; margin-top: 0.75rem; }
.star { width: 1rem; height: 1rem; }
.star-filled { color: #f59e0b; }
.star-empty { color: var(--gray-200); }

.trust-bar {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  color: var(--gray-300);
  font-size: 0.875rem;
  font-weight: 500;
}
.trust-bar-num { color: var(--brand-400); font-weight: 700; font-size: 1.125rem; }
.trust-bar-divider { width: 1px; height: 16px; background: var(--gray-200); display: none; }

/* ── Savings Calculator ── */
.calculator { background: #fff; }
.calculator-header { text-align: center; margin-bottom: 3rem; }
.calculator-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.calc-controls {
  background: var(--gray-50);
  border-radius: 1.25rem;
  border: 1px solid var(--gray-100);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.calc-results { display: flex; flex-direction: column; gap: 1rem; }
.results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.result-card {
  border-radius: 1.25rem;
  padding: 1.25rem;
  border: 1px solid var(--gray-100);
  background: #fff;
  text-align: center;
}
.result-card.highlight { border-color: var(--brand-200); background: var(--brand-50); }
.result-card-label { font-size: 0.75rem; color: var(--gray-500); font-weight: 500; margin-bottom: 0.25rem; }
.result-card-value { font-size: 1.5rem; font-weight: 800; color: var(--brand-900); tabular-nums: initial; }
.result-card.highlight .result-card-value { color: var(--brand-700); }
.result-card-sub { font-size: 0.6875rem; color: var(--gray-400); margin-top: 0.25rem; }
.calc-summary {
  border-radius: 1.25rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #0a2a5e, #1a56b5);
}
.calc-summary-title { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: 0.25rem; }
.calc-summary-amount { color: #fff; font-size: 2.5rem; font-weight: 800; margin-bottom: 0.25rem; }
.calc-summary-label { color: #bfdbfe; font-size: 0.875rem; }
.calc-summary-note { color: #93c5fd; font-size: 0.75rem; margin-top: 0.5rem; }
.calc-cta {
  width: 100%;
  padding: 0.875rem;
  border-radius: 0.75rem;
  background: var(--brand-700);
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 4px 12px rgba(26,86,181,.25);
}
.calc-cta:hover { background: var(--brand-800); }

/* Slider styles */
.slider-wrap { display: flex; flex-direction: column; gap: 0; }
.slider-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.slider-label { font-size: 0.875rem; font-weight: 600; color: var(--gray-700); }
.slider-value { font-size: 0.875rem; font-weight: 700; color: var(--brand-700); font-variant-numeric: tabular-nums; }
.slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  appearance: none;
  background: var(--gray-200);
  cursor: pointer;
  outline: none;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #1a56b5;
  border: 3px solid white;
  box-shadow: 0 1px 6px rgba(0,0,0,.2);
  cursor: pointer;
}
.slider::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #1a56b5;
  border: 3px solid white;
  box-shadow: 0 1px 6px rgba(0,0,0,.2);
  cursor: pointer;
}
.slider-minmax { display: flex; justify-content: space-between; font-size: 0.6875rem; color: var(--gray-300); margin-top: 0.25rem; }
.calc-note { font-size: 0.75rem; color: var(--gray-400); line-height: 1.55; padding-top: 0.75rem; border-top: 1px solid var(--gray-200); }

/* ── FAQ ── */
.faq { background: var(--gray-50); }
.faq-header { text-align: center; margin-bottom: 3.5rem; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid var(--gray-100);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: var(--gray-900);
  cursor: pointer;
  gap: 1rem;
  transition: color .15s;
}
.faq-question:hover { color: var(--brand-700); }
.faq-icon { flex-shrink: 0; width: 1.5rem; height: 1.5rem; color: var(--brand-600); transition: transform .25s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--gray-600);
  font-size: 0.9375rem;
  line-height: 1.7;
  border-top: 1px solid var(--gray-100);
}
.faq-item.open .faq-answer { display: block; }

/* ── CTA Section ── */
.cta-section {
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a2a5e 0%, #4285f4 100%);
  text-align: center;
}
.cta-blob-1 { position: absolute; top: -6rem; right: -6rem; width: 24rem; height: 24rem; border-radius: 50%; filter: blur(80px); opacity: .3; background: #60a5fa; pointer-events: none; }
.cta-blob-2 { position: absolute; bottom: -6rem; left: -6rem; width: 20rem; height: 20rem; border-radius: 50%; filter: blur(80px); opacity: .2; background: #93c5fd; pointer-events: none; }
.cta-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; margin-bottom: 1.25rem; line-height: 1.2; position: relative; }
.cta-subtitle { color: #bfdbfe; font-size: 1.125rem; margin-bottom: 2.5rem; position: relative; }
.cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; position: relative; }
.cta-note { color: #93c5fd; font-size: 0.875rem; margin-top: 1.25rem; position: relative; }

/* ── Footer ── */
.site-footer {
  background: linear-gradient(135deg, #061830 0%, #0a2a5e 100%);
  color: #fff;
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 3.5rem 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 1rem; }
.footer-logo img { width: 32px; height: 32px; border-radius: 6px; }
.footer-logo-name { font-weight: 800; font-size: 1.125rem; color: #fff; }
.footer-brand-desc { color: #bfdbfe; font-size: 0.875rem; line-height: 1.65; }
.footer-contact-link { display: block; margin-top: 0.75rem; color: #93c5fd; font-size: 0.875rem; transition: color .15s; }
.footer-contact-link:hover { color: #fff; }
.footer-col-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #60a5fa; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-link { color: #bfdbfe; font-size: 0.875rem; transition: color .15s; }
.footer-link:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  color: #60a5fa;
  font-size: 0.75rem;
}
.footer-cookie-btn {
  background: transparent;
  border: none;
  color: #60a5fa;
  font-size: 0.75rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0;
  transition: color .15s;
}
.footer-cookie-btn:hover { color: #fff; }

/* ── Trial Modal extras ── */
.trial-info-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  margin-bottom: 1.5rem;
}
.trial-info-bar span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-700);
}
.trial-disclaimer {
  font-size: 0.8rem;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.trial-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 0.5rem;
}

/* ── Booking Modal ── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(6,24,48,.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-backdrop.hidden { display: none; }
.modal-box {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 24px 64px rgba(0,0,0,.25);
  width: 100%;
  max-width: 28rem;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--gray-100);
}
.modal-header-left { display: flex; align-items: center; gap: 0.75rem; }
.modal-title { font-weight: 800; font-size: 1.125rem; color: var(--brand-900); }
.modal-step { font-size: 0.75rem; color: var(--gray-400); margin-top: 0.125rem; }
.modal-close {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  border-radius: 0.625rem;
  color: var(--gray-400);
  cursor: pointer;
  transition: all .15s;
  flex-shrink: 0;
}
.modal-close:hover { background: var(--gray-100); color: var(--gray-700); }
.modal-back {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  border-radius: 0.625rem;
  color: var(--gray-500);
  cursor: pointer;
  transition: all .15s;
}
.modal-back:hover { background: var(--gray-100); }
.modal-body { padding: 1.5rem; }

/* Calendar inside modal */
.cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.cal-nav-btn {
  width: 2rem; height: 2rem;
  display: flex; align-items: center; justify-content: center;
  border: none; background: transparent;
  border-radius: 0.625rem; color: var(--brand-700);
  cursor: pointer; transition: background .15s;
}
.cal-nav-btn:hover { background: var(--brand-50); }
.cal-nav-btn:disabled { opacity: .3; cursor: not-allowed; }
.cal-month { font-weight: 700; font-size: 0.9375rem; color: var(--brand-900); }
.cal-weekdays { display: grid; grid-template-columns: repeat(7,1fr); margin-bottom: 0.25rem; }
.cal-weekday { text-align: center; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 0.25rem 0; color: var(--gray-400); }
.cal-weekday.weekend { color: var(--gray-300); }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  border: none; background: transparent;
  border-radius: 0.625rem;
  font-size: 0.875rem; font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
  transition: all .15s;
  width: 100%;
}
.cal-day:hover:not(:disabled) { background: var(--brand-50); color: var(--brand-800); }
.cal-day:disabled { color: var(--gray-200); cursor: not-allowed; }
.cal-day.selected { background: var(--brand-700); color: #fff; font-weight: 700; box-shadow: 0 2px 8px rgba(26,86,181,.3); }

/* Time slots */
.time-slots-header { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--gray-100); }
.time-slots-label { font-size: 0.875rem; font-weight: 600; color: var(--brand-900); margin-bottom: 0.75rem; text-transform: capitalize; }
.time-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0.5rem; }
.time-slot {
  padding: 0.625rem;
  border-radius: 0.75rem;
  border: 1.5px solid var(--brand-100);
  background: var(--brand-50);
  color: var(--brand-800);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all .15s;
}
.time-slot:hover:not(:disabled) { background: var(--brand-100); border-color: var(--brand-300); }
.time-slot:disabled { background: var(--gray-100); border-color: var(--gray-100); color: var(--gray-300); text-decoration: line-through; cursor: not-allowed; }
.time-slot.selected { background: var(--brand-700); color: #fff; border-color: var(--brand-700); box-shadow: 0 2px 8px rgba(26,86,181,.3); }
.time-slot.skeleton { background: var(--gray-100); border-color: var(--gray-100); animation: shimmer 1.5s infinite; }
@keyframes shimmer { 0%,100%{opacity:.6} 50%{opacity:1} }

/* Booking form */
.booking-selected-slot {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}
.slot-icon {
  width: 2rem; height: 2rem;
  background: var(--brand-700);
  color: #fff;
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.slot-label { font-size: 0.75rem; color: var(--brand-600); font-weight: 500; }
.slot-value { font-size: 0.875rem; font-weight: 700; color: var(--brand-900); text-transform: capitalize; }
.slot-change { margin-left: auto; font-size: 0.75rem; color: var(--brand-600); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; background: transparent; border: none; cursor: pointer; }
.slot-change:hover { color: var(--brand-800); }
.form-fields { display: flex; flex-direction: column; gap: 0.75rem; }
.form-group {}
.form-label { display: block; font-size: 0.75rem; font-weight: 600; color: var(--gray-600); margin-bottom: 0.375rem; }
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  color: var(--gray-900);
  transition: border-color .15s;
  background: #fff;
}
.form-input:focus { outline: none; border-color: var(--brand-500); box-shadow: 0 0 0 3px var(--brand-100); }
.form-input::placeholder { color: var(--gray-300); }
.form-error {
  padding: 0.75rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 0.75rem;
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
.form-submit {
  width: 100%;
  padding: 0.875rem;
  border-radius: 0.75rem;
  background: var(--brand-700);
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  box-shadow: 0 4px 12px rgba(26,86,181,.25);
}
.form-submit:hover:not(:disabled) { background: var(--brand-800); }
.form-submit:disabled { opacity: .6; cursor: not-allowed; }
.spinner { width: 1rem; height: 1rem; border: 2px solid rgba(255,255,255,.3); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Success screen */
.success-screen { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 1.5rem 0; }
.success-icon { width: 5rem; height: 5rem; border-radius: 50%; background: #dcfce7; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; margin-bottom: 1.5rem; }
.success-title { font-size: 1.5rem; font-weight: 800; color: var(--brand-900); margin-bottom: 0.5rem; }
.success-subtitle { color: var(--gray-500); font-size: 0.9375rem; max-width: 18rem; margin-bottom: 1.5rem; }
.success-details {
  width: 100%;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: 1rem;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: left;
}
.success-details-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--brand-600); margin-bottom: 0.5rem; }
.success-details-time { font-size: 1rem; font-weight: 700; color: var(--brand-900); margin-bottom: 0.25rem; text-transform: capitalize; }
.success-details-note { font-size: 0.875rem; color: var(--gray-500); }

/* Proceed button in modal */
.modal-proceed {
  margin-top: 1.5rem;
  width: 100%;
  padding: 0.875rem;
  border-radius: 0.75rem;
  background: var(--brand-700);
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 4px 12px rgba(26,86,181,.25);
}
.modal-proceed:hover:not(:disabled) { background: var(--brand-800); }
.modal-proceed:disabled { opacity: .4; cursor: not-allowed; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--brand-900);
  color: #fff;
  padding: 5rem 1.5rem;
}
.page-hero-tag {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  background: rgba(255,255,255,.08);
  color: #93c5fd;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.page-hero-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 1.25rem; }
.page-hero-subtitle { color: var(--brand-300); font-size: 1.125rem; max-width: 40rem; }

/* ── Features page ── */
.feat-hero { background: linear-gradient(135deg, var(--brand-950) 0%, var(--brand-800) 100%); }
.feat-hero-nav { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2.5rem; }
.feat-hero-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 9999px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background .2s;
}
.feat-hero-pill:hover { background: rgba(255,255,255,.16); }

.feat-section { scroll-margin-top: 80px; }
.feat-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.feat-row--reverse .feat-screenshot { order: -1; }

.feat-tag { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 1.25rem; }
.feat-tag-icon { font-size: 1.5rem; }
.feat-title { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; color: var(--brand-900); line-height: 1.25; margin-bottom: 1rem; }
.feat-desc { color: var(--gray-500); font-size: 1rem; line-height: 1.75; margin-bottom: 1.75rem; }
.feat-list { display: flex; flex-direction: column; gap: 0.75rem; }
.feat-list-item { display: flex; align-items: center; gap: 0.75rem; color: var(--gray-700); font-size: 0.9375rem; font-weight: 500; }
.feat-check {
  flex-shrink: 0;
  width: 1.375rem; height: 1.375rem;
  background: linear-gradient(135deg, #4285f4, #1a56b5);
  border-radius: 50%;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}

.feat-screenshot { width: 100%; display: flex; justify-content: center; }


/* ── Laptop mockup ── */
.feat-laptop {
  position: relative;
  cursor: zoom-in;
  width: 100%;
  max-width: 620px;
  transition: transform .3s ease, filter .3s ease;
  filter: drop-shadow(0 18px 48px rgba(0,0,0,.28)) drop-shadow(0 6px 18px rgba(26,86,181,.12));
}
.feat-laptop:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 28px 64px rgba(0,0,0,.38)) drop-shadow(0 10px 28px rgba(26,86,181,.2));
}
@media (prefers-reduced-motion: reduce) {
  .feat-laptop:hover { transform: none; }
}

/* Pokrywa z ekranem */
.feat-laptop-lid {
  background: #1c1c1e;
  border-radius: 0.75rem 0.75rem 0 0;
  padding: 0.55rem 0.65rem 0.4rem;
  border: 2px solid #3a3a3c;
  border-bottom: none;
}
.feat-laptop-camera {
  width: 0.4rem;
  height: 0.4rem;
  background: #3a3a3c;
  border-radius: 50%;
  margin: 0 auto 0.4rem;
}
.feat-laptop-screen {
  border-radius: 0.2rem;
  overflow: hidden;
  line-height: 0;
  background: #fff;
  aspect-ratio: 16 / 10;
}
.feat-laptop-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
}

/* Podstawa / klawiatura */
.feat-laptop-base {
  background: linear-gradient(180deg, #2c2c2e 0%, #1f1f21 100%);
  height: 1.6rem;
  width: 106%;
  margin-left: -3%;
  border-radius: 0 0 0.35rem 0.35rem;
  border: 2px solid #3a3a3c;
  border-top: 1.5px solid #444;
  position: relative;
}
/* Touchpad */
.feat-laptop-base::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18%;
  height: 55%;
  background: #2a2a2c;
  border-radius: 0.15rem;
  border: 1px solid #444;
}

/* Dolna krawędź */
.feat-laptop-foot {
  height: 0.28rem;
  background: #111;
  border-radius: 0 0 0.5rem 0.5rem;
  width: 108%;
  margin-left: -4%;
}

/* Ikona powiększenia przy hover */
.feat-laptop-zoom {
  position: absolute;
  top: 1.5rem;
  right: 1rem;
  background: rgba(0,0,0,.55);
  color: #fff;
  border-radius: 0.5rem;
  padding: 0.3rem 0.5rem;
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
  line-height: 1.2;
}
.feat-laptop:hover .feat-laptop-zoom { opacity: 1; }

.feat-screenshot-placeholder {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-50), var(--brand-100));
  gap: 0.5rem;
  padding: 2rem;
  border-radius: 0.5rem;
}
.feat-screenshot-icon { font-size: 3rem; margin-bottom: 0.5rem; }
.feat-screenshot-placeholder p { font-size: 1rem; font-weight: 700; color: var(--brand-700); }
.feat-screenshot-placeholder span { font-size: 0.8125rem; color: var(--brand-400); }

/* ── Lightbox ── */
.pg-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(6px);
  animation: lb-in .18s ease;
}
.pg-lightbox.hidden { display: none; }
@keyframes lb-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.pg-lightbox-wrap {
  position: relative;
  max-width: min(92vw, 1200px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}
.pg-lightbox-close {
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  flex-shrink: 0;
}
.pg-lightbox-close:hover { background: rgba(255,255,255,.3); }
.pg-lightbox-wrap img {
  max-width: 100%;
  max-height: calc(90vh - 3rem);
  border-radius: 0.75rem;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
  display: block;
}

@media (min-width: 1024px) {
  .feat-row { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .feat-row--reverse .feat-screenshot { order: 0; }
  .feat-row--reverse .feat-text { order: 1; }
}

/* ── Partners page ── */
.partners-hero { background: linear-gradient(135deg, var(--brand-900) 0%, var(--brand-700) 100%); }
.partners-hero-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.partners-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 9999px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
}
.partners-section-header { text-align: center; margin-bottom: 3.5rem; }
.partners-types-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.partner-type-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 1px solid var(--gray-100);
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}
.partner-type-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.1); }
.partner-type-icon { font-size: 3.5rem; margin-bottom: 1.25rem; }
.partner-type-title { font-size: 1.5rem; font-weight: 800; color: var(--brand-900); margin-bottom: 0.875rem; }
.partner-type-desc { color: var(--gray-500); line-height: 1.7; margin-bottom: 1.5rem; }
.partner-type-list { display: flex; flex-direction: column; gap: 0.6rem; }
.partner-type-list li { color: var(--gray-700); font-size: 0.9375rem; }

.partners-steps { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.partners-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.75rem;
  border: 1px solid var(--gray-100);
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.partners-step-num {
  flex-shrink: 0;
  width: 3rem; height: 3rem;
  background: linear-gradient(135deg, #4285f4, #1a56b5);
  border-radius: 0.875rem;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(26,86,181,.3);
}
.partners-step-body { flex: 1; }
.partners-step h4 { font-size: 1.05rem; font-weight: 700; color: var(--brand-900); margin-bottom: 0.375rem; }
.partners-step p { color: var(--gray-500); font-size: 0.9rem; line-height: 1.65; margin: 0; }
.partners-step-arrow { display: none; }

.partners-benefits-section { background: linear-gradient(135deg, var(--brand-900) 0%, var(--brand-800) 100%); }
.partners-benefits-section .section-tag { background: rgba(255,255,255,.1); color: #93c5fd; }
.partners-benefits-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.partners-benefit {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1.25rem;
  padding: 1.75rem;
  transition: background .2s;
}
.partners-benefit:hover { background: rgba(255,255,255,.12); }
.partners-benefit-icon {
  flex-shrink: 0;
  font-size: 2rem;
  width: 3.5rem; height: 3.5rem;
  background: rgba(255,255,255,.1);
  border-radius: 0.875rem;
  display: flex; align-items: center; justify-content: center;
}
.partners-benefit-body { flex: 1; }
.partners-benefit h4 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 0.375rem; }
.partners-benefit p { color: var(--brand-200); font-size: 0.9rem; line-height: 1.65; margin: 0; }

.partners-form-wrap { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
.partners-form-info h2 { font-size: 1.75rem; font-weight: 800; color: var(--brand-900); margin: 1rem 0; }
.partners-form-info p { color: var(--gray-500); line-height: 1.7; margin-bottom: 1.5rem; }
.partners-form-box {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 4px 32px rgba(0,0,0,.08);
  border: 1px solid var(--gray-100);
}

@media (min-width: 768px) {
  .partners-types-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-form-wrap { grid-template-columns: 1fr 1.2fr; }
  .partners-steps { grid-template-columns: repeat(3, 1fr); }
}

/* ── Pricing single ── */
.pricing-single-wrap { max-width: 560px; margin: 0 auto; }
.pricing-single-card {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 8px 48px rgba(26,86,181,.12);
  border: 2px solid var(--brand-100);
  overflow: hidden;
}
.pricing-single-header {
  background: linear-gradient(135deg, var(--brand-900), var(--brand-700));
  padding: 2.5rem 2.5rem 2rem;
  text-align: center;
  color: #fff;
}
.pricing-single-label {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 1.5rem;
  color: var(--brand-200);
}
.pricing-single-price { display: flex; align-items: center; justify-content: center; gap: 0.75rem; }
.pricing-single-amount { font-size: clamp(2.5rem, 6vw, 3.5rem); font-weight: 900; line-height: 1; }
.pricing-single-per { display: flex; flex-direction: column; text-align: left; font-size: 0.875rem; color: var(--brand-200); line-height: 1.4; }
.pricing-single-netto { font-weight: 700; color: #fff; font-size: 1rem; }
.pricing-single-divider { height: 1px; background: var(--gray-100); }
.pricing-single-features { padding: 2rem 2.5rem; }
.pricing-single-includes { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-400); margin-bottom: 1.25rem; }
.pricing-single-list { display: flex; flex-direction: column; gap: 0.875rem; }
.pricing-single-list li { display: flex; align-items: center; gap: 0.75rem; font-size: 1rem; color: var(--gray-700); font-weight: 500; }
.pricing-single-actions { padding: 0 2.5rem 2.5rem; text-align: center; }
.pricing-single-actions .price-btn { width: 100%; justify-content: center; margin-bottom: 1rem; }
.pricing-single-note { font-size: 0.8125rem; color: var(--gray-400); }

/* ── Billing toggle ── */
.billing-toggle { display: flex; align-items: center; justify-content: center; gap: 0.875rem; margin-bottom: 2rem; flex-wrap: wrap; }
.billing-label { font-size: 0.9375rem; font-weight: 600; color: var(--gray-400); transition: color .2s; user-select: none; }
.billing-label--active { color: var(--gray-800); }
.billing-slider {
  position: relative; display: inline-flex; align-items: center;
  width: 52px; height: 28px;
  background: var(--brand-600);
  border-radius: 9999px; border: none; cursor: pointer; padding: 0;
  transition: background .25s;
  flex-shrink: 0;
}
.billing-slider--off { background: var(--gray-300); }
.billing-slider-thumb {
  position: absolute; left: 3px;
  width: 22px; height: 22px;
  background: #fff; border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,.22);
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.billing-slider:not(.billing-slider--off) .billing-slider-thumb { transform: translateX(24px); }
.billing-badge { display: inline-block; background: #dcfce7; color: #166534; font-size: 0.8125rem; font-weight: 700; padding: 0.3rem 0.875rem; border-radius: 9999px; white-space: nowrap; }

/* ── Pricing cards ── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}
.price-card {
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1.5px solid var(--gray-100);
  background: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,.04);
  display: flex;
  flex-direction: column;
}
.price-card.popular {
  background: var(--brand-900);
  border-color: var(--brand-700);
  box-shadow: 0 12px 40px rgba(10,42,94,.35);
}
.price-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: var(--brand-600);
  color: var(--brand-200);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 0.75rem;
}
.price-name { font-size: 1.25rem; font-weight: 800; color: var(--brand-900); margin-bottom: 0.25rem; }
.price-card.popular .price-name { color: #fff; }
.price-amount { font-size: 2rem; font-weight: 800; color: var(--brand-800); margin-bottom: 0.5rem; }
.price-card.popular .price-amount { color: #fff; }
.price-soon { font-size: 0.875rem; font-weight: 400; opacity: .6; margin-left: 0.5rem; }
.price-desc { font-size: 0.9375rem; color: var(--gray-500); margin-bottom: 1.5rem; }
.price-card.popular .price-desc { color: var(--brand-300); }
.price-features { display: flex; flex-direction: column; gap: 0.625rem; flex: 1; margin-bottom: 2rem; }
.price-feature { display: flex; align-items: center; gap: 0.625rem; font-size: 0.9375rem; color: var(--gray-600); }
.price-card.popular .price-feature { color: var(--brand-200); }
.price-check { color: var(--brand-500); font-weight: 700; }
.price-card.popular .price-check { color: #4ade80; }
.price-btn {
  display: block;
  text-align: center;
  padding: 0.75rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.9375rem;
  border: 2px solid var(--brand-800);
  color: var(--brand-800);
  transition: all .2s;
}
.price-btn:hover { background: var(--brand-50); }
.price-card.popular .price-btn { background: #fff; color: var(--brand-900); border-color: #fff; }
.price-card.popular .price-btn:hover { background: var(--gray-100); }

/* ── Contact form page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 960px;
  margin: 0 auto;
}
.contact-info h2 { font-size: 1.5rem; font-weight: 700; color: var(--brand-900); margin-bottom: 1rem; }
.contact-info p { color: var(--gray-600); font-size: 0.9375rem; line-height: 1.7; margin-bottom: 1.5rem; }
.contact-detail { display: flex; align-items: center; gap: 0.75rem; color: var(--gray-700); font-size: 0.9375rem; margin-bottom: 0.75rem; }
.contact-company { margin-top: 2rem; padding-top: 1.75rem; border-top: 1px solid var(--gray-100); }
.contact-company-title { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-400); margin-bottom: 1rem; }
.contact-company-details { display: flex; flex-direction: column; gap: 0.625rem; }
.contact-company-row { color: var(--gray-700); font-size: 0.9375rem; line-height: 1.6; }
.contact-form-box {
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid var(--gray-100);
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  padding: 2rem;
}
.contact-form-title { font-size: 1.25rem; font-weight: 700; color: var(--brand-900); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1rem; }
.contact-submit {
  width: 100%;
  padding: 1rem;
  background: var(--brand-700);
  color: #fff;
  border: none;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all .2s;
  margin-top: 0.5rem;
}
.contact-submit:hover { background: var(--brand-800); }

/* ── FAQ page ── */
.faq-page-container { max-width: 800px; margin: 0 auto; }

/* ── Industry page ── */
.industry-benefits { display: grid; grid-template-columns: 1fr; gap: 1rem; margin: 2rem 0; }
.benefit-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; background: #fff; border-radius: 1rem; border: 1px solid var(--gray-100); }
.benefit-icon { font-size: 1.75rem; flex-shrink: 0; }
.benefit-title { font-weight: 700; color: var(--brand-900); margin-bottom: 0.25rem; }
.benefit-desc { color: var(--gray-500); font-size: 0.9375rem; }

/* ── Cookie banner ── */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 480px;
  background: #1f2937;
  color: #fff;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  z-index: 95;
  font-size: 0.875rem;
  line-height: 1.6;
}
.cookie-banner.hidden { display: none; }
.cookie-banner p { margin-bottom: 1rem; color: #d1d5db; }
.cookie-banner a { color: #60a5fa; }
.cookie-actions { display: flex; gap: 0.75rem; }
.cookie-accept {
  flex: 1;
  padding: 0.625rem;
  background: var(--brand-600);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background .15s;
}
.cookie-accept:hover { background: var(--brand-700); }
.cookie-reject {
  padding: 0.625rem 1rem;
  background: transparent;
  color: #9ca3af;
  border: 1px solid #374151;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
}

/* ── Instrukcja (Help) ── */
.instrukcja-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 1200px; margin: 0 auto; padding: 2rem 1.5rem; }
.instrukcja-sidebar { background: #fff; border: 1px solid var(--gray-100); border-radius: 1rem; padding: 1.25rem; }
.sidebar-title { font-weight: 700; font-size: 1rem; color: var(--brand-900); margin-bottom: 1rem; }
.sidebar-cat-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-400); margin-bottom: 0.5rem; margin-top: 1rem; }
.sidebar-link { display: block; padding: 0.5rem 0.625rem; border-radius: 0.5rem; font-size: 0.9rem; color: var(--gray-700); transition: all .15s; }
.sidebar-link:hover { background: var(--brand-50); color: var(--brand-700); }
.sidebar-link.active { background: var(--brand-50); color: var(--brand-700); font-weight: 600; }
.instrukcja-content h1 { font-size: 2rem; font-weight: 800; color: var(--brand-900); margin-bottom: 1.5rem; }
.instrukcja-content h2 { font-size: 1.375rem; font-weight: 700; color: var(--brand-900); margin: 2rem 0 0.875rem; }
.instrukcja-content h3 { font-size: 1.125rem; font-weight: 700; color: var(--gray-800); margin: 1.5rem 0 0.625rem; }
.instrukcja-content p { color: var(--gray-600); font-size: 0.9375rem; line-height: 1.8; margin-bottom: 1rem; }
.instrukcja-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.instrukcja-content li { color: var(--gray-600); font-size: 0.9375rem; line-height: 1.8; margin-bottom: 0.375rem; list-style: disc; }
.article-card {
  display: block;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all .2s;
  color: var(--gray-900);
  margin-bottom: 1rem;
}
.article-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); transform: translateY(-1px); }
.article-card-title { font-weight: 700; font-size: 1.0625rem; color: var(--brand-900); margin-bottom: 0.5rem; }
.article-card-excerpt { color: var(--gray-500); font-size: 0.9rem; line-height: 1.6; }
.article-card-meta { color: var(--gray-400); font-size: 0.8125rem; margin-top: 0.75rem; }

/* ── Partners form ── */
.partners-form { max-width: 640px; margin: 0 auto; }

/* ── Roadmapa ── */
.roadmap-timeline { max-width: 720px; margin: 0 auto; }
.roadmap-item { display: flex; gap: 1.5rem; padding-bottom: 2.5rem; position: relative; }
.roadmap-item::before { content: ''; position: absolute; left: 1.125rem; top: 2.5rem; bottom: 0; width: 2px; background: var(--gray-200); }
.roadmap-item:last-child::before { display: none; }
.roadmap-dot {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.roadmap-dot.done { background: #dcfce7; color: #16a34a; }
.roadmap-dot.current { background: var(--brand-700); color: #fff; }
.roadmap-dot.planned { background: var(--gray-100); color: var(--gray-400); }
.roadmap-content { padding-top: 0.25rem; }
.roadmap-phase { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-400); margin-bottom: 0.375rem; }
.roadmap-title { font-size: 1.0625rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.375rem; }
.roadmap-desc { color: var(--gray-500); font-size: 0.9375rem; }

/* ── Legal pages ── */
.legal-content { max-width: 840px; margin: 0 auto; }
.legal-content h1 { font-size: 2rem; font-weight: 800; color: var(--brand-900); margin-bottom: 0.5rem; }
.legal-date { color: var(--gray-400); font-size: 0.875rem; margin-bottom: 2.5rem; }
.legal-content h2 { font-size: 1.25rem; font-weight: 700; color: var(--brand-900); margin: 2rem 0 0.875rem; }
.legal-content p { color: var(--gray-600); font-size: 0.9375rem; line-height: 1.8; margin-bottom: 1rem; }
.legal-content ul, .legal-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content li { color: var(--gray-600); font-size: 0.9375rem; line-height: 1.8; margin-bottom: 0.375rem; }
.legal-content ul li { list-style: disc; }
.legal-content ol li { list-style: decimal; }

/* ── Admin booking panel ── */
.admin-bookings-table { width: 100%; border-collapse: collapse; }
.admin-bookings-table th { background: var(--gray-50); color: var(--gray-700); font-weight: 700; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: .05em; padding: 0.875rem 1rem; text-align: left; border-bottom: 1px solid var(--gray-200); }
.admin-bookings-table td { padding: 1rem; border-bottom: 1px solid var(--gray-100); font-size: 0.9375rem; color: var(--gray-700); }
.status-confirmed { display: inline-block; padding: 0.25rem 0.625rem; background: #dcfce7; color: #15803d; border-radius: 9999px; font-size: 0.75rem; font-weight: 700; }
.status-cancelled { display: inline-block; padding: 0.25rem 0.625rem; background: #fee2e2; color: #dc2626; border-radius: 9999px; font-size: 0.75rem; font-weight: 700; }

/* ── Notifications ── */
.notice-success { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 0.75rem; color: #15803d; padding: 1rem 1.25rem; margin-bottom: 1.5rem; font-size: 0.9375rem; }
.notice-error { background: #fef2f2; border: 1px solid #fecaca; border-radius: 0.75rem; color: #dc2626; padding: 1rem 1.25rem; margin-bottom: 1.5rem; font-size: 0.9375rem; }

/* ── Responsive ── */
@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
  .trust-bar-divider { display: block; }
  .form-row { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .hamburger-btn { display: none; }
  .nav-primary { display: flex; }
  .header-actions { display: flex; }
  .hero-stats-divider { display: block; }
  .contact-grid { grid-template-columns: 1fr 1.5fr; }
  .industry-benefits { grid-template-columns: repeat(2, 1fr); }
  .instrukcja-layout { grid-template-columns: 280px 1fr; }
}

@media (max-width: 767px) {
  .hamburger-btn { display: flex; }
  .nav-primary { display: none; }
  .header-actions { display: none; }
}

@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .calculator-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { flex-direction: row; align-items: center; }
  .hero-logo-box { display: flex; }
  .hero-devices-box { display: flex; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ══════════════════════════════════════════════
   INSTRUKCJA - Sidebar
══════════════════════════════════════════════ */

/* Layout override for instrukcja pages */
.instrukcja-layout {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - 4rem);
  max-width: 1400px;
  margin: 0 auto;
}

/* Sidebar wrap */
.instrukcja-sidebar-wrap {
  background: #fff;
  border-right: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 4rem;
  height: calc(100vh - 4rem);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-200) transparent;
}
.instrukcja-sidebar-wrap::-webkit-scrollbar { width: 4px; }
.instrukcja-sidebar-wrap::-webkit-scrollbar-track { background: transparent; }
.instrukcja-sidebar-wrap::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 2px; }

.isb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1rem 0.75rem;
  border-bottom: 1px solid var(--gray-100);
  flex-shrink: 0;
}
.isb-title {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--brand-900);
}
.isb-mobile-close {
  display: none;
  width: 2rem; height: 2rem;
  align-items: center; justify-content: center;
  border: none; background: transparent;
  border-radius: 0.5rem; color: var(--gray-500);
  cursor: pointer;
}
.isb-mobile-close:hover { background: var(--gray-100); }

/* Search */
.isb-search-wrap {
  position: relative;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--gray-100);
  flex-shrink: 0;
}
.isb-search {
  width: 100%;
  padding: 0.5rem 0.75rem 0.5rem 2rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 0.625rem;
  font-size: 0.875rem;
  background: var(--gray-50);
  color: var(--gray-900);
  transition: border-color .15s;
  outline: none;
}
.isb-search:focus { border-color: var(--brand-400); background: #fff; }
.isb-search::placeholder { color: var(--gray-400); }
.isb-search-icon {
  position: absolute;
  left: 1.625rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
}

/* Nav */
.isb-nav {
  flex: 1;
  padding: 0.5rem 0;
  overflow-y: auto;
}

/* Category */
.isb-cat { border-bottom: 1px solid var(--gray-50); }
.isb-cat-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: color .15s;
}
.isb-cat-toggle:hover { color: var(--brand-700); }
.isb-cat.open .isb-cat-toggle { color: var(--brand-700); }
.isb-cat-icon { font-size: 1rem; flex-shrink: 0; }
.isb-cat-name { flex: 1; }
.isb-cat-count {
  font-size: 0.6875rem;
  font-weight: 700;
  background: var(--gray-100);
  color: var(--gray-500);
  border-radius: 9999px;
  padding: 0.125rem 0.5rem;
  flex-shrink: 0;
}
.isb-cat.open .isb-cat-count { background: var(--brand-100); color: var(--brand-700); }
.isb-chevron {
  flex-shrink: 0;
  color: var(--gray-400);
  transition: transform .25s;
}
.isb-cat.open .isb-chevron { transform: rotate(180deg); }

/* Articles list inside category */
.isb-articles {
  display: none;
  flex-direction: column;
  padding: 0 0 0.5rem 0;
}
.isb-articles.open { display: flex; }
.isb-article-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 1rem 0.5rem 2.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
  border-left: 2px solid transparent;
  transition: all .15s;
  line-height: 1.4;
}
.isb-article-link:hover { color: var(--brand-700); background: var(--brand-50); }
.isb-article-link.active {
  color: var(--brand-700);
  background: var(--brand-50);
  border-left-color: var(--brand-600);
  font-weight: 600;
}
.isb-article-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gray-300);
  flex-shrink: 0;
}
.isb-article-link.active .isb-article-dot,
.isb-article-link:hover .isb-article-dot { background: var(--brand-500); }

.isb-empty { padding: 1.5rem 1rem; color: var(--gray-400); font-size: 0.875rem; }
.isb-empty a { color: var(--brand-600); }
.isb-no-articles { padding: 0.375rem 1rem 0.375rem 2.5rem; color: var(--gray-400); font-size: 0.8125rem; }
.isb-no-results { padding: 0.75rem 1rem; color: var(--gray-400); font-size: 0.875rem; }

/* Footer */
.isb-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  border-top: 1px solid var(--gray-100);
  flex-shrink: 0;
  background: var(--gray-50);
}
.isb-all-link { font-size: 0.8125rem; color: var(--gray-500); font-weight: 500; transition: color .15s; }
.isb-all-link:hover { color: var(--brand-700); }
.isb-admin-link { font-size: 0.8125rem; color: var(--brand-600); font-weight: 500; transition: color .15s; }
.isb-admin-link:hover { color: var(--brand-800); }

/* ── Mobile bar (always visible on mobile) ── */
.isb-mobile-bar {
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: #fff;
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 4rem;
  z-index: 50;
}
.isb-mobile-open {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: var(--brand-50);
  color: var(--brand-700);
  border: 1.5px solid var(--brand-200);
  border-radius: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
  transition: all .15s;
}
.isb-mobile-open:hover { background: var(--brand-100); }
.isb-mobile-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--gray-500);
  min-width: 0;
  overflow: hidden;
}
.isb-mobile-breadcrumb span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Overlay */
.isb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,24,48,.5);
  z-index: 199;
  backdrop-filter: blur(2px);
}

/* ══════════════════════════════════════════════
   INSTRUKCJA - Article content
══════════════════════════════════════════════ */

.instrukcja-content-wrap {
  min-width: 0;
  padding: 2rem 1.5rem 4rem;
}

.instrukcja-article {}

/* Article header */
.ia-header { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--gray-100); }
.ia-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  background: var(--brand-50);
  color: var(--brand-700);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 0.875rem;
}
.ia-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--brand-900);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.ia-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-400);
  font-size: 0.875rem;
}
.ia-meta-sep { color: var(--gray-300); }

/* Article body typography */
.ia-body { line-height: 1.8; color: var(--gray-700); }
.ia-body h2 { font-size: 1.375rem; font-weight: 700; color: var(--brand-900); margin: 2.5rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--brand-100); }
.ia-body h3 { font-size: 1.125rem; font-weight: 700; color: var(--gray-800); margin: 2rem 0 0.75rem; }
.ia-body h4 { font-size: 1rem; font-weight: 700; color: var(--gray-700); margin: 1.5rem 0 0.5rem; }
.ia-body p { margin-bottom: 1.125rem; }
.ia-body ul, .ia-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.ia-body ul li { list-style: disc; margin-bottom: 0.5rem; }
.ia-body ol li { list-style: decimal; margin-bottom: 0.5rem; }
.ia-body a { color: var(--brand-600); text-decoration: underline; text-underline-offset: 2px; }
.ia-body a:hover { color: var(--brand-800); }
.ia-body strong { font-weight: 700; color: var(--gray-900); }
.ia-body code {
  font-family: monospace;
  background: var(--gray-100);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-size: 0.875em;
  color: var(--brand-800);
}
.ia-body pre {
  background: var(--gray-900);
  color: #e5e7eb;
  padding: 1.25rem;
  border-radius: 0.75rem;
  overflow-x: auto;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
}
.ia-body pre code { background: transparent; padding: 0; color: inherit; }
.ia-body blockquote {
  border-left: 4px solid var(--brand-300);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--brand-50);
  border-radius: 0 0.75rem 0.75rem 0;
  color: var(--brand-800);
}
.ia-body img { border-radius: 0.75rem; box-shadow: 0 4px 20px rgba(0,0,0,.08); margin: 1.5rem 0; max-width: 100%; }
.ia-body table { width: 100%; border-collapse: collapse; margin-bottom: 1.25rem; font-size: 0.9375rem; }
.ia-body th { background: var(--brand-900); color: #fff; padding: 0.75rem 1rem; text-align: left; font-weight: 600; }
.ia-body td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--gray-100); }
.ia-body tr:nth-child(even) td { background: var(--gray-50); }
/* Info/warning boxes via WP shortcode class */
.ia-body .pg-info { background: #eff6ff; border-left: 4px solid #3b82f6; padding: 1rem 1.25rem; border-radius: 0 0.75rem 0.75rem 0; margin-bottom: 1.25rem; color: #1d4ed8; }
.ia-body .pg-warning { background: #fffbeb; border-left: 4px solid #f59e0b; padding: 1rem 1.25rem; border-radius: 0 0.75rem 0.75rem 0; margin-bottom: 1.25rem; color: #92400e; }
.ia-body .pg-tip { background: #f0fdf4; border-left: 4px solid #22c55e; padding: 1rem 1.25rem; border-radius: 0 0.75rem 0.75rem 0; margin-bottom: 1.25rem; color: #15803d; }

/* Prev/Next nav */
.ia-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-100);
}
.ia-nav-link {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-radius: 1rem;
  transition: all .2s;
  color: var(--gray-700);
}
.ia-nav-link:hover { border-color: var(--brand-300); background: var(--brand-50); color: var(--brand-700); box-shadow: 0 4px 12px rgba(26,86,181,.1); }
.ia-nav-next { justify-content: flex-end; text-align: right; }
.ia-nav-arrow { font-size: 1.25rem; color: var(--brand-400); flex-shrink: 0; }
.ia-nav-label { display: block; font-size: 0.75rem; color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 0.25rem; }
.ia-nav-title { display: block; font-size: 0.9375rem; font-weight: 700; line-height: 1.35; }

/* Was helpful */
.ia-helpful {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--gray-50);
  border-radius: 1rem;
  border: 1px solid var(--gray-100);
  text-align: center;
}
.ia-helpful-label { font-weight: 600; color: var(--gray-700); margin-bottom: 0.875rem; }
.ia-helpful-buttons { display: flex; gap: 0.75rem; justify-content: center; }
.ia-helpful-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 0.625rem;
  border: 1.5px solid var(--gray-200);
  background: #fff;
  font-size: 0.9375rem;
  color: var(--gray-600);
  cursor: pointer;
  transition: all .15s;
  font-weight: 500;
}
.ia-helpful-btn:hover { border-color: var(--brand-300); color: var(--brand-700); background: var(--brand-50); }
.ia-helpful-thanks { color: var(--gray-500); font-size: 0.9375rem; margin-top: 0.75rem; }

/* Related articles */
.ia-related { margin-top: 2.5rem; }
.ia-related-title { font-size: 1.0625rem; font-weight: 700; color: var(--brand-900); margin-bottom: 1rem; }
.ia-related-grid { display: flex; flex-direction: column; gap: 0.625rem; }
.ia-related-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 0.75rem;
  color: var(--gray-700);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all .15s;
}
.ia-related-card:hover { background: var(--brand-50); border-color: var(--brand-200); color: var(--brand-700); }
.ia-related-icon { font-size: 1rem; flex-shrink: 0; }
.ia-related-name { flex: 1; }

/* Breadcrumbs */
.isb-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.isb-breadcrumbs a { color: var(--gray-500); transition: color .15s; }
.isb-breadcrumbs a:hover { color: var(--brand-600); }
.isb-breadcrumbs span { color: var(--gray-700); font-weight: 500; }

/* ══════════════════════════════════════════════
   INSTRUKCJA - Main listing page
══════════════════════════════════════════════ */

.ikh-categories { display: flex; flex-direction: column; gap: 2rem; }
.ikh-cat-block {
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid var(--gray-100);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.ikh-cat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--brand-50);
  border-bottom: 1px solid var(--brand-100);
}
.ikh-cat-icon { font-size: 1.5rem; flex-shrink: 0; }
.ikh-cat-name { font-size: 1.125rem; font-weight: 700; color: var(--brand-900); flex: 1; }
.ikh-cat-count { font-size: 0.75rem; font-weight: 700; color: var(--brand-600); background: var(--brand-100); padding: 0.25rem 0.625rem; border-radius: 9999px; }
.ikh-articles-list { padding: 0.75rem 0; }
.ikh-articles-list li { border-bottom: 1px solid var(--gray-50); }
.ikh-articles-list li:last-child { border-bottom: none; }
.ikh-article-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  color: var(--gray-700);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all .15s;
}
.ikh-article-link svg { color: var(--brand-400); flex-shrink: 0; }
.ikh-article-link:hover { background: var(--brand-50); color: var(--brand-700); padding-left: 1.75rem; }
.ikh-empty-cat { padding: 1rem 1.5rem; color: var(--gray-400); font-size: 0.9rem; }
.ikh-search-box {
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 1.25rem;
}

/* ── Responsive (instrukcja) ── */
@media (min-width: 768px) {
  .instrukcja-layout { grid-template-columns: 280px 1fr; }
  .isb-mobile-bar { display: none !important; }
  .instrukcja-sidebar-wrap { display: flex; }
}

@media (max-width: 767px) {
  .isb-mobile-bar { display: flex; }
  .instrukcja-sidebar-wrap {
    position: fixed;
    top: 0;
    left: -100%;
    bottom: 0;
    width: min(320px, 90vw);
    z-index: 200;
    height: 100vh;
    border-right: 1px solid var(--gray-200);
    box-shadow: 4px 0 24px rgba(0,0,0,.15);
    transition: left .3s ease;
  }
  .instrukcja-sidebar-wrap.mobile-open {
    left: 0;
  }
  .isb-mobile-close { display: flex; }
  .instrukcja-layout { grid-template-columns: 1fr; }
  .ia-nav { grid-template-columns: 1fr; }
  .ia-nav-next { justify-content: flex-start; text-align: left; }
}

/* ── Promocja: konsultacja radcy prawnego ── */
.promo-legal { background: #fff; }
.promo-legal-header { text-align: center; margin-bottom: 2rem; }
.promo-legal-footnote { text-align: center; font-size: .75rem; color: var(--gray-300); margin-top: .75rem; }
.promo-legal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .promo-legal-grid { grid-template-columns: repeat(3, 1fr); }
}
.promo-card {
  background: var(--gray-50);
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid var(--gray-100);
  box-shadow: 0 1px 6px rgba(0,0,0,.04);
  transition: box-shadow .2s, transform .2s;
}
.promo-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.08); transform: translateY(-2px); }
.promo-card--highlight {
  background: var(--brand-50);
  border-color: var(--brand-100);
  text-align: center;
}
.promo-card-icon { font-size: 2.5rem; line-height: 1; margin-bottom: 1rem; }
.promo-card-num {
  font-size: 4rem;
  font-weight: 900;
  color: var(--brand-600);
  line-height: 1;
  margin-bottom: .75rem;
}
.promo-card-title { font-size: 1.125rem; font-weight: 700; color: var(--brand-900); margin-bottom: .5rem; }
.promo-card-desc { color: var(--gray-500); font-size: .9375rem; line-height: 1.65; }

/* ── Utilities ── */
.text-center { text-align: center; }
.hidden { display: none !important; }
.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; }

/* ── Przykłady użycia ── */
.tab-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 680px;
  margin: 0 auto 3rem;
}
.tab-cards--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 460px;
}
.tab-card {
  display: flex; flex-direction: column; align-items: center; gap: 0.625rem;
  padding: 1.5rem 1rem;
  background: #fff; border: 2px solid var(--gray-100);
  border-radius: 1rem; cursor: pointer;
  font-size: 0.9375rem; font-weight: 600; color: var(--gray-600);
  transition: border-color .2s, box-shadow .2s, color .2s;
}
.tab-card:hover { border-color: var(--brand-300); color: var(--brand-700); }
.tab-card.active { border-color: var(--brand-600); color: var(--brand-900); box-shadow: 0 0 0 3px var(--brand-100); }
.tab-card-icon { font-size: 2rem; line-height: 1; }
.tab-card-name { text-align: center; line-height: 1.3; }

.industry-panel { display: none; }
.industry-panel.active { display: block; }

.case-study { max-width: 820px; margin: 0 auto; }
.case-study-title { font-size: clamp(1.25rem, 3vw, 1.625rem); font-weight: 800; color: var(--brand-900); margin-bottom: 1.5rem; }
.case-study p { color: var(--gray-700); line-height: 1.75; margin-bottom: 1.25rem; }
.case-study-list { margin: 0 0 1.25rem 1.25rem; color: var(--gray-700); line-height: 1.75; display: flex; flex-direction: column; gap: 0.25rem; }
.case-figure { margin: 2rem 0; text-align: center; }
.case-figure img { max-width: 100%; height: auto; border: 1px solid var(--gray-100); border-radius: 1rem; box-shadow: 0 2px 12px rgba(0,0,0,.07); }
.case-figure figcaption { margin-top: 0.625rem; font-size: 0.875rem; color: var(--gray-400); font-style: italic; }

.case-study--placeholder { text-align: center; padding: 5rem 2rem; color: var(--gray-400); }
.case-placeholder-icon { font-size: 4rem; margin-bottom: 1rem; }
.case-study--placeholder h2 { color: var(--gray-600); margin-bottom: 0.75rem; }

@media (max-width: 600px) {
  .industry-cards { grid-template-columns: 1fr; max-width: 320px; }
}

/* ── Aplikacja mobilna ── */
.btn-store {
  display: inline-flex; align-items: center; gap: .75rem;
  background: #111; color: #fff; border-radius: .75rem;
  padding: .7rem 1.4rem; text-decoration: none; transition: opacity .2s;
  border: 2px solid transparent;
}
.btn-store:hover { opacity: .85; }
.btn-store--soon { opacity: .5; cursor: default; }
.btn-store-icon { font-size: 1.6rem; line-height: 1; }
.btn-store-sub  { display: block; font-size: .7rem; opacity: .75; line-height: 1; }
.btn-store-name { display: block; font-size: 1rem; font-weight: 700; line-height: 1.2; }

/* sekcje funkcji mobilnych - pionowy układ jak feat-section */
.mf-section { padding: 2.5rem 1.5rem; }
.mf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.mf-row--reverse { direction: rtl; }
.mf-row--reverse > * { direction: ltr; }

.mf-tag { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; }
.mf-tag-icon { font-size: 1.5rem; line-height: 1; }
.mf-title { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; color: var(--brand-900); margin: 0 0 1rem; line-height: 1.25; }
.mf-desc  { font-size: 1rem; color: var(--gray-600); line-height: 1.75; margin: 0; }

.mf-image { display: flex; justify-content: center; align-items: center; }

/* ── Phone mockup ── */
.mf-phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mf-phones::before {
  content: '';
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,86,181,.09) 0%, transparent 68%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  z-index: 0;
}
.mf-phones--dual {
  gap: 1.25rem;
  align-items: flex-start;
  padding: 2rem 0.5rem;
}
.mf-phones--dual .mob-phone:first-child {
  transform: translateY(-1.5rem) rotate(-3deg);
  z-index: 2;
}
.mf-phones--dual .mob-phone:last-child {
  transform: translateY(1.5rem) rotate(3deg);
  z-index: 1;
}

.mob-phone {
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, #1e293b 0%, #0f172a 55%, #1e293b 100%);
  border-radius: 2.4rem;
  padding: 0.4rem;
  border: 1px solid #3b4a63;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    0 24px 48px rgba(11,27,59,.38),
    0 6px 16px rgba(11,27,59,.22);
  width: 190px;
  flex-shrink: 0;
  cursor: zoom-in;
  transition: transform .28s ease, box-shadow .28s ease;
}
/* hover pojedynczy */
.mf-phones:not(.mf-phones--dual) .mob-phone.pg-lightbox-trigger:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 32px 64px rgba(11,27,59,.45),
    0 10px 24px rgba(26,86,181,.25);
}
/* hover lewy w parze */
.mf-phones--dual .mob-phone:first-child.pg-lightbox-trigger:hover {
  transform: translateY(-1.5rem) rotate(-3deg) scale(1.04);
}
/* hover prawy w parze */
.mf-phones--dual .mob-phone:last-child.pg-lightbox-trigger:hover {
  transform: translateY(1.5rem) rotate(3deg) scale(1.04);
}
@media (prefers-reduced-motion: reduce) {
  .mob-phone.pg-lightbox-trigger:hover { transform: none !important; }
}
.mob-phone-zoom {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,.6);
  color: #fff;
  border-radius: 0.4rem;
  padding: 0.2rem 0.45rem;
  font-size: 0.7rem;
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
  white-space: nowrap;
}
.mob-phone.pg-lightbox-trigger:hover .mob-phone-zoom { opacity: 1; }
/* przycisk boczny prawy (zasilanie) */
.mob-phone::before {
  content: '';
  position: absolute;
  right: -3px;
  top: 24%;
  width: 3px;
  height: 12%;
  background: #3b4a63;
  border-radius: 0 3px 3px 0;
}
/* przyciski boczne lewe (głośność) */
.mob-phone::after {
  content: '';
  position: absolute;
  left: -3px;
  top: 18%;
  width: 3px;
  height: 7%;
  background: #3b4a63;
  border-radius: 3px 0 0 3px;
  box-shadow: 0 26px 0 #3b4a63;
}
/* kamera - punch-hole nad ekranem */
.mob-phone-notch {
  position: absolute;
  top: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #0b1220;
  box-shadow: inset 0 0 0 1.5px #2c3a52, 0 0 0 2px rgba(11,18,32,.35);
  margin: 0;
  z-index: 2;
}
.mob-phone-notch::after { display: none; }
.mob-phone-screen {
  border-radius: 2rem;
  overflow: hidden;
  background: #fff;
  /* aspect-ratio 9:19.5 ≈ proporcje ekranu telefonu */
  aspect-ratio: 9 / 19.5;
}
.mob-phone-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .35s ease;
}
.mob-phone:hover .mob-phone-screen img {
  transform: scale(1.06);
}
.mob-phone-screen--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gray-400);
}
/* pasek gestów - subtelny, nałożony na dół ekranu */
.mob-phone-chin {
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.6rem;
  height: 0.28rem;
  background: rgba(15, 23, 42, .35);
  border-radius: 1rem;
  margin: 0;
  z-index: 2;
}
/* dual - nieco węższe */
.mf-phones--dual .mob-phone {
  width: 168px;
  border-radius: 2.2rem;
}

@media (max-width: 768px) {
  .mf-row, .mf-row--reverse { grid-template-columns: 1fr; direction: ltr; gap: 2rem; }
  .mf-image { order: -1; }
  .mob-phone { width: 150px; border-radius: 2rem; padding: 0.35rem; }
  .mf-phones--dual .mob-phone { width: 132px; border-radius: 1.75rem; }
  .mf-phones--dual { gap: 0.75rem; padding: 1.5rem 0; }
  .mf-phones--dual .mob-phone:first-child { transform: translateY(-1rem) rotate(-3deg); }
  .mf-phones--dual .mob-phone:first-child.pg-lightbox-trigger:hover { transform: translateY(-1rem) rotate(-3deg) scale(1.04); }
  .mf-phones--dual .mob-phone:last-child.pg-lightbox-trigger:hover { transform: translateY(1rem) rotate(3deg) scale(1.04); }
  .mf-phones::before { width: 260px; height: 260px; }
  .mf-phones--dual .mob-phone:last-child  { transform: translateY(0.75rem) rotate(3deg); }
}

.mobile-platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 700px; margin: 0 auto;
}
.mobile-platform-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 2.5rem 2rem;
  background: #fff;
  border: 1px solid var(--gray-200); border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(11, 27, 59, .07);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.mobile-platform-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-200);
  box-shadow: 0 20px 45px rgba(11, 27, 59, .12);
}
.mobile-platform-logo {
  width: 72px; height: 72px; border-radius: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  box-shadow: inset 0 1px 0 #fff, 0 4px 12px rgba(11, 27, 59, .08);
}
.mobile-platform-logo--ios { background: #0f172a; border-color: #0f172a; color: #fff; }
.mobile-platform-name { font-size: 1.25rem; font-weight: 700; color: var(--brand-900); margin-bottom: .5rem; }
.mobile-platform-desc { font-size: .9rem; color: var(--gray-600); line-height: 1.6; }
.mobile-platform-list {
  margin: 1.25rem 0 1.5rem;
  text-align: left;
  display: inline-block;
}
.mobile-platform-list li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: .5rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--brand-900);
}
.mobile-platform-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: .05rem;
  width: 1.15rem; height: 1.15rem;
  border-radius: 50%;
  background: var(--brand-50);
  color: var(--brand-600);
  font-size: .7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-platform-soon {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: auto;
  background: #fef3c7; color: #92400e;
  border: 1px solid #fde68a;
  border-radius: 2rem; padding: .45rem 1.2rem;
  font-size: .85rem; font-weight: 600;
}
.mobile-platform-soon-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #f59e0b;
  animation: pulse 2s infinite;
}

.mobile-trial {
  max-width: 580px; margin: 0 auto; text-align: center; padding: 3rem 0;
}
.mobile-trial-badge { font-size: 3rem; margin-bottom: 1rem; }
.mobile-trial-title { font-size: clamp(1.5rem,4vw,2.25rem); font-weight: 800; color: var(--brand-900); margin-bottom: 1rem; }
.mobile-trial-desc  { font-size: 1.05rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1.5rem; }
.mobile-trial-checks {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1.5rem;
  font-size: .9rem; color: var(--gray-500);
}
.mobile-trial-checks span { white-space: nowrap; }

/* ══════════════════════════════════════════════
   STRONA GŁÓWNA - nowe sekcje (problemy, porównanie,
   aplikacja mobilna, bezpieczeństwo)
══════════════════════════════════════════════ */

/* ── Problemy („Masz dość…") ── */
.problems { background: #fff; padding-bottom: 3rem; }
.problems-header { text-align: center; margin-bottom: 2.5rem; }
.problems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.problem-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 1rem;
  padding: 1.75rem;
}
.problem-icon { font-size: 1.75rem; margin-bottom: .75rem; }
.problem-title { font-size: 1.05rem; font-weight: 700; color: var(--brand-900); margin-bottom: .5rem; }
.problem-desc { font-size: .92rem; color: var(--gray-500); line-height: 1.6; }
.problems-answer {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-900);
}

/* ── Porównanie (tabela) ── */
.comparison { background: var(--gray-50); }
.comparison-header { text-align: center; margin-bottom: 3rem; }
.compare-wrap {
  overflow-x: auto;
  border-radius: 1.25rem;
  border: 1px solid var(--gray-200);
  box-shadow: 0 20px 45px rgba(11, 27, 59, .10);
  background: #fff;
}
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  min-width: 720px;
}
.compare-table th, .compare-table td {
  padding: 1.05rem 1.5rem;
  font-size: .95rem;
  border-bottom: 1px solid var(--gray-100);
}
.compare-table thead th {
  background: var(--brand-900);
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: .02em;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.compare-table thead th:first-child { text-align: left; }
.compare-table thead th.col-highlight {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  font-size: 1.05rem;
}
.compare-table td { text-align: center; color: var(--gray-600); }
.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--brand-900);
}
.compare-table td.col-highlight {
  background: var(--brand-50);
  font-weight: 700;
  color: var(--brand-800);
  border-left: 2px solid var(--brand-200);
  border-right: 2px solid var(--brand-200);
}
.compare-table tbody tr:nth-child(even) td { background: var(--gray-50); }
.compare-table tbody tr:nth-child(even) td.col-highlight { background: var(--brand-100); }
.compare-table tbody tr:hover td { background: var(--brand-50); }
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table tbody tr:last-child td.col-highlight { border-bottom: 0; }

/* ── Kafelki case studies pod tabelą ── */
.case-links-header {
  text-align: center;
  margin: 2.5rem 0 1rem;
  font-weight: 700;
  color: var(--brand-900);
}
.case-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
.case-link-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.case-link-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-200);
  box-shadow: 0 12px 30px rgba(11, 27, 59, .10);
}
.case-link-icon { font-size: 1.75rem; flex-shrink: 0; }
.case-link-text { display: flex; flex-direction: column; gap: .15rem; }
.case-link-text strong { color: var(--brand-900); font-size: 1rem; }
.case-link-text span { color: var(--gray-500); font-size: .88rem; line-height: 1.5; }
.case-link-arrow { margin-left: auto; color: var(--brand-600); font-weight: 800; font-size: 1.25rem; flex-shrink: 0; }

@media (min-width: 768px) {
  .case-links { grid-template-columns: 1fr 1fr; }
}

/* ── Aplikacja mobilna ── */
.mobile-app { background: linear-gradient(180deg, var(--brand-50) 0%, #fff 100%); }
.mobile-app-header { text-align: center; margin-bottom: 3rem; }
.mobile-phones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2.5rem;
}
.mock-phone { text-align: center; }
.mock-phone .mob-phone { width: 180px; margin: 0 auto; cursor: default; }
.mock-phone .mob-phone:hover .mob-phone-screen img { transform: none; }
.mock-phone-label {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--brand-900);
  font-size: .95rem;
}

/* ── Bezpieczeństwo ── */
.security { background: #fff; }
.security-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.security-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.security-badge {
  display: flex;
  align-items: center;
  gap: .8rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  padding: 1.25rem;
  font-weight: 600;
  color: var(--brand-900);
  font-size: .95rem;
}
.security-badge-icon { font-size: 1.5rem; }

@media (min-width: 768px) {
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .problems-grid { grid-template-columns: repeat(4, 1fr); }
  .security-inner { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════
   PODSTRONA APLIKACJA MOBILNA - hero z telefonem,
   kroki startu
══════════════════════════════════════════════ */
.page-hero--mobile {
  background: linear-gradient(135deg, var(--brand-950) 0%, var(--brand-800) 100%);
  overflow: hidden;
}
.mobile-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.mobile-hero-visual {
  display: none;
  position: relative;
  justify-content: center;
  padding: 1rem 0;
}
.mobile-hero-visual .mob-phone { width: 230px; cursor: default; }
.mobile-hero-visual .mob-phone:hover .mob-phone-screen img { transform: none; }
.mobile-hero-chip {
  position: absolute;
  background: #fff;
  border-radius: 9999px;
  padding: .5rem 1rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--brand-900);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  white-space: nowrap;
  z-index: 3;
}
.mobile-hero-chip--1 { top: 8%; left: 4%; }
.mobile-hero-chip--2 { bottom: 10%; right: 6%; }

@media (min-width: 1024px) {
  .mobile-hero-grid { grid-template-columns: 1.15fr .85fr; }
  .mobile-hero-visual { display: flex; }
  .steps-grid--three { grid-template-columns: repeat(3, 1fr); }
}

/* ══════════════════════════════════════════════
   PRZYKŁADY UŻYCIA - podsumowania case study, lightbox
══════════════════════════════════════════════ */
.page-hero--gradient {
  background: linear-gradient(135deg, var(--brand-950) 0%, var(--brand-800) 100%);
}
.case-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.75rem 0 2.5rem;
}
.case-summary-item {
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: 1rem;
  padding: 1.5rem;
}
.case-summary-icon { font-size: 1.5rem; margin-bottom: .6rem; }
.case-summary-label {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brand-700);
  margin-bottom: .4rem;
}
.case-summary-item p {
  font-size: .92rem;
  color: var(--gray-700);
  line-height: 1.6;
  margin: 0;
}
.case-figure.pg-lightbox-trigger { cursor: zoom-in; position: relative; }
.case-figure.pg-lightbox-trigger:hover img {
  box-shadow: 0 12px 32px rgba(11, 27, 59, .18);
}
.case-figure.pg-lightbox-trigger::after {
  content: "🔍 Powiększ";
  position: absolute;
  top: .75rem;
  right: .75rem;
  background: rgba(11, 27, 59, .72);
  color: #fff;
  border-radius: .5rem;
  padding: .25rem .6rem;
  font-size: .75rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
}
.case-figure.pg-lightbox-trigger:hover::after { opacity: 1; }

@media (min-width: 768px) {
  .case-summary { grid-template-columns: repeat(3, 1fr); }
}

/* ══════════════════════════════════════════════
   CENNIK - przykład kosztu, atuty, FAQ o cennik
══════════════════════════════════════════════ */
.pricing-example {
  text-align: center;
  margin-top: 1.5rem;
  padding: .9rem 1.25rem;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: .75rem;
  color: var(--brand-800);
  font-size: .95rem;
  font-weight: 500;
}
.cennik-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 900px;
  margin: 3.5rem auto 0;
}
.cennik-benefit {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  padding: 1.75rem;
  text-align: center;
}
.cennik-benefit-icon { font-size: 1.75rem; margin-bottom: .75rem; }
.cennik-benefit-title { font-size: 1.05rem; font-weight: 700; color: var(--brand-900); margin-bottom: .5rem; }
.cennik-benefit-desc { font-size: .92rem; color: var(--gray-500); line-height: 1.6; }
.cennik-faq { max-width: 760px; margin: 4rem auto 0; }
.cennik-faq-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-900);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cennik-benefits { grid-template-columns: repeat(3, 1fr); }
}
