/* ============================================================
   KSeFakt v2 — Static preview (HTML/CSS/JS, no framework)
   Color preview: calm SaaS/fintech palette aligned with app UI
   Typography: Space Grotesk / Inter / JetBrains Mono
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --turkus: #0F766E;
  --turkus-600: #115E59;
  --turkus-700: #0F766E;
  --turkus-50:  #E6F5F2;
  --granat: #0F172A;
  --granat-700: #172033;
  --granat-600: #1E293B;
  --violet: #64748B;          /* muted; only tiny planned labels */
  --cream: #F7F8F5;
  --cream-100: #F1F3EE;
  --cream-200: #E5E7EB;

  /* Neutrals */
  --ink: #111827;
  --ink-2: #1F2937;
  --muted: #6B7280;
  --faint: #9CA3AF;
  --line: #E5E7EB;
  --line-soft: #E5E7EB;
  --line-dark: #263247;       /* on granat */

  /* Status */
  --ok: #0F766E;
  --warn: #B45309;
  --info: #2563EB;

  /* Typography */
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Spacing scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;

  /* Radius */
  --r-1: 4px;
  --r-2: 8px;
  --r-3: 12px;
  --r-4: 16px;
  --r-5: 22px;

  /* Container */
  --maxw: 1180px;
  --maxw-narrow: 760px;

  /* Shadows */
  --shadow-card: 0 1px 0 rgba(15,23,42,0.04), 0 10px 28px -18px rgba(15,23,42,0.14);
  --shadow-lift: 0 1px 0 rgba(15,23,42,0.05), 0 24px 60px -34px rgba(15,23,42,0.28);
  --shadow-win:  0 2px 0 rgba(15,23,42,0.04), 0 34px 80px -40px rgba(15,23,42,0.34);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink);
  /* iter#19: subtelny gradient kremowy z akcentem turkusowym w tło */
  background: var(--cream);
  background-image:
    radial-gradient(ellipse 800px 400px at 8% -5%, rgba(15, 118, 110, 0.06), transparent 70%),
    radial-gradient(ellipse 600px 300px at 95% 12%, rgba(15, 23, 42, 0.04), transparent 70%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}

/* ---------- Type ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--granat);
  letter-spacing: -0.018em;
  margin: 0 0 var(--s-4) 0;
  font-weight: 600;
  line-height: 1.12;
}
h1 { font-size: clamp(38px, 5.4vw, 64px); letter-spacing: -0.028em; line-height: 1.04; }
h2 { font-size: clamp(28px, 3.2vw, 40px); }
h3 { font-size: clamp(20px, 2vw, 24px); }
h4 { font-size: 17px; letter-spacing: -0.005em; }
p  { margin: 0 0 var(--s-4) 0; color: var(--ink-2); }
small, .small { font-size: 13.5px; color: var(--muted); }

.mono, code, kbd, .nip, .num {
  font-family: var(--font-mono);
  font-feature-settings: "tnum", "lnum", "zero";
}
.nip { letter-spacing: 0.02em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--turkus-700);
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--turkus);
  box-shadow: 0 0 0 4px rgba(20,184,166,0.18);
}

.lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 60ch;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: var(--maxw-narrow); }

section { padding: var(--s-9) 0; }
section.tight { padding: var(--s-8) 0; }
section.cream-100 { background: var(--cream-100); }
section.granat { background: var(--granat); color: #E2E8F0; }
section.granat h2, section.granat h3, section.granat h4 { color: #fff; }
section.granat p { color: #E2E8F0; }
section.granat p strong { color: #fff; }
section.granat .lead { color: #CBD5E1; }

.row { display: flex; gap: var(--s-6); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }

.section-head {
  max-width: 720px;
  margin-bottom: var(--s-7);
}
.section-head h2 { margin-top: 8px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-2);
  font-weight: 600;
  font-size: 15.5px;
  border: 1px solid transparent;
  transition: transform 0.08s ease, background 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--turkus);
  color: #fff;
  box-shadow: 0 1px 0 rgba(15,23,42,0.05), 0 10px 22px -12px rgba(15,118,110,0.45);
}
.btn-primary:hover { background: var(--turkus-600); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--granat);
  border-color: rgba(17,24,39,0.14);
}
.btn-ghost:hover { border-color: var(--granat); background: rgba(17,24,39,0.035); }
.btn-dark {
  background: var(--granat);
  color: #fff;
}
.btn-dark:hover { background: var(--granat-600); }
.btn-link {
  display: inline-flex; gap: 6px;
  color: var(--turkus-700);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.btn-link:hover { color: var(--granat); }
.btn .arrow { transition: transform 0.15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--granat);
  color: #aebccc;
  font-size: 12.5px;
  border-bottom: 1px solid var(--line-dark);
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 8px; padding-bottom: 8px;
}
.topbar .dot { color: var(--turkus); }
.topbar .topbar-right { display: flex; gap: 20px; }
.topbar a:hover { color: #fff; }
@media (max-width: 720px) {
  .topbar .container { font-size: 11.5px; gap: 12px; }
  .topbar .topbar-right { display: none; }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.nav .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--granat);
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 30px; height: 30px;
  border-radius: 7px;
  background: var(--granat);
  display: grid; place-items: center;
  color: var(--turkus);
  flex: 0 0 auto;
}
.brand-mark svg { width: 18px; height: 18px; }

.nav-links {
  display: flex; gap: 6px; align-items: center;
  list-style: none; padding: 0; margin: 0;
}
.nav-links a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: var(--r-2);
  font-size: 15px;
  color: var(--ink-2);
  font-weight: 500;
}
.nav-links a:hover { background: var(--cream-100); color: var(--granat); }
.nav-links a.active { color: var(--granat); }
.nav-links a.active::after {
  content: ""; display: block; height: 2px; background: var(--turkus);
  margin: 6px 14px 0; border-radius: 2px;
}
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-cta .btn { padding: 10px 18px; font-size: 14.5px; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: var(--r-2);
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--granat); margin: 4px auto; border-radius: 1px; }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav-cta .btn-ghost { display: none; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 12px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 12px 14px; border-radius: 8px; }
  .nav-links a.active::after { display: none; }
  .nav-links a.active { background: var(--cream-100); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 70px 0 60px;
  background:
    radial-gradient(900px 600px at 90% -10%, rgba(20,184,166,0.10), transparent 60%),
    radial-gradient(700px 500px at -10% 30%, rgba(107,91,255,0.06), transparent 60%),
    var(--cream);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.25fr;
  gap: 60px;
  align-items: center;
}
.hero h1 .accent {
  background: linear-gradient(180deg, transparent 65%, rgba(20,184,166,0.35) 65%);
  padding: 0 4px;
}
.hero .lead { margin-top: 14px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.hero-meta {
  margin-top: 28px;
  display: flex; gap: 22px; flex-wrap: wrap;
  font-size: 13.5px; color: var(--muted);
  font-family: var(--font-mono);
}
.hero-meta span { display: inline-flex; gap: 6px; align-items: center; }
.hero-meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--turkus); }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- App frame (premium placeholder) ---------- */
.appframe {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-4);
  box-shadow: var(--shadow-win);
  overflow: hidden;
}
.appframe.dark {
  background: var(--granat);
  border-color: var(--line-dark);
}
.appframe-bar {
  display: flex; align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--cream-100);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}
.appframe.dark .appframe-bar { background: var(--granat-700); border-bottom-color: var(--line-dark); color: #CBD5E1; }
.appframe-bar .dots { display: inline-flex; gap: 6px; }
.appframe-bar .dots i {
  width: 11px; height: 11px; border-radius: 50%;
  background: #e5e1d4; display: inline-block;
}
.appframe-bar .dots i:nth-child(1) { background: #ef6f64; }
.appframe-bar .dots i:nth-child(2) { background: #f0c674; }
.appframe-bar .dots i:nth-child(3) { background: #7bc47f; }
.appframe-bar .path { color: var(--ink-2); }
.appframe.dark .appframe-bar .path { color: #c9d1e2; }
.appframe-bar .tag-local {
  margin-left: auto;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(20,184,166,0.12);
  color: var(--turkus-700);
  letter-spacing: 0.06em;
}
.appframe.dark .appframe-bar .tag-local { background: rgba(20,184,166,0.18); color: #4adfcc; }

.appframe-body {
  position: relative;
  min-height: 360px;
  padding: 0;
  background:
    linear-gradient(0deg, rgba(11,15,26,0.02), rgba(11,15,26,0.02)),
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(11,15,26,0.025) 12px 13px);
}
.appframe.dark .appframe-body {
  background:
    linear-gradient(0deg, rgba(255,255,255,0.02), rgba(255,255,255,0.02)),
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(255,255,255,0.04) 14px 15px);
}
.appframe-label {
  position: absolute;
  top: 18px; left: 18px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: rgba(255,255,255,0.85);
  border: 1px dashed var(--line);
  padding: 5px 10px;
  border-radius: 6px;
}
.appframe.dark .appframe-label {
  background: rgba(15,23,42,0.92);
  border-color: #3b4b6e;
  color: #E2E8F0;
}
.appframe-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 24px;
  gap: 14px;
}
.appframe-placeholder .ph-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--granat);
  letter-spacing: -0.01em;
}
.appframe.dark .appframe-placeholder .ph-title { color: #fff; }
.appframe-placeholder .ph-sub {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--muted);
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
}
.appframe.dark .appframe-placeholder .ph-sub {
  background: rgba(15,23,42,0.92);
  border-color: #3b4b6e;
  color: #CBD5E1;
}

/* Przekreślona cena docelowa + badge oszczędności w price-note */
.price-old {
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  opacity: 0.75;
  margin-left: 2px;
}
.price-save {
  display: inline-block;
  background: var(--accent, #0F766E);
  color: #fff;
  font-weight: 600;
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 999px;
  margin-left: 4px;
  letter-spacing: 0.02em;
}
.plan.featured .price-save {
  background: #5fe9d6;
  color: #0b0f1a;
}

/* Footnote pod sekcją (gwiazdki: offline*, OCR*) */
.footnote {
  font-size: 11.5px;
  line-height: 1.5;
  color: #94A3B8;
  margin-top: 10px;
  padding-left: 12px;
  border-left: 2px solid var(--line, #E5E7EB);
  letter-spacing: 0.02em;
  text-transform: none;
}
.card .footnote { font-size: 11px; }
.footnote sup,
h3 sup, h2 sup {
  font-size: 0.7em;
  color: var(--accent, #0F766E);
  font-weight: 600;
  margin-left: 1px;
}

/* Hero appframe is taller */
.hero .appframe-body { min-height: 460px; }
.hero .appframe { transform: translateY(0); }

/* Stylized app sketch (skeleton mock inside the frame) */
.app-sketch {
  position: absolute; inset: 56px 20px 56px 20px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 14px;
}
.app-sketch .side { background: rgba(11,15,26,0.04); border-radius: 10px; padding: 14px; }
.app-sketch .side .item { height: 12px; background: rgba(11,15,26,0.10); border-radius: 4px; margin-bottom: 10px; }
.app-sketch .side .item.s { width: 60%; }
.app-sketch .side .item.l { width: 90%; }
.app-sketch .side .item.active { background: rgba(20,184,166,0.35); }
.app-sketch .main { background: #fff; border-radius: 10px; padding: 16px; border: 1px solid var(--line); }
.app-sketch .main .row-l { display: flex; gap: 8px; margin-bottom: 12px; }
.app-sketch .main .chip { height: 18px; background: rgba(11,15,26,0.06); border-radius: 4px; flex: 1; }
.app-sketch .main .chip.acc { background: rgba(20,184,166,0.18); flex: 0 0 70px; }
.app-sketch .main .line { height: 10px; background: rgba(11,15,26,0.06); border-radius: 3px; margin: 8px 0; }
.app-sketch .main .line.short { width: 40%; }
.app-sketch .main .line.med { width: 70%; }
.app-sketch .main .line.tnum { background: rgba(11,15,26,0.10); }
.app-sketch .main .grid-mini { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; margin-top: 12px; }
.app-sketch .main .cell { height: 26px; background: rgba(11,15,26,0.05); border-radius: 4px; }
.app-sketch .main .cell.h { background: rgba(11,15,26,0.10); }
.app-sketch .main .cell.t { background: rgba(20,184,166,0.18); }

/* ---------- Trust strip ---------- */
.trust {
  padding: 22px 0;
  background: var(--cream-100);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  font-size: 13.5px;
  color: var(--muted);
}
.trust .container {
  display: flex; gap: 36px; flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.trust span { display: inline-flex; gap: 8px; align-items: center; font-family: var(--font-mono); }
.trust .pill {
  background: #fff; border: 1px solid var(--line);
  padding: 6px 12px; border-radius: 999px;
  letter-spacing: 0.04em;
}

/* ---------- Feature cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  padding: 26px 24px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); border-color: var(--cream-200); }
.card .ico {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--turkus-50);
  color: var(--turkus-700);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.card .ico svg { width: 18px; height: 18px; }
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { font-size: 15px; color: var(--ink-2); margin: 0; }
.card .meta {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Side-by-side feature row ---------- */
.feature-row { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; }
.feature-row.flip { grid-template-columns: 1.2fr 1fr; }
.feature-row.flip .feature-copy { order: 2; }
.feature-row.flip .feature-media { order: 1; }
.feature-copy h3 { font-size: 26px; margin-bottom: 12px; }
.feature-copy .checks { list-style: none; padding: 0; margin: 18px 0 0; }
.feature-copy .checks li {
  display: flex; gap: 10px; padding: 6px 0;
  font-size: 15px; color: var(--ink-2);
}
.feature-copy .checks li::before {
  content: ""; flex: 0 0 18px; height: 18px; margin-top: 3px;
  border-radius: 50%;
  background: var(--turkus-50);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f766e' stroke-width='3'><path d='M5 12l4 4 10-10'/></svg>");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 880px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .feature-row, .feature-row.flip { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.flip .feature-copy, .feature-row.flip .feature-media { order: initial; }
}
@media (max-width: 560px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
}

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  padding: 24px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--turkus-700);
  letter-spacing: 0.1em;
}
.step h4 { margin: 10px 0 6px; font-size: 18px; }
.step p { font-size: 14.5px; color: var(--muted); margin: 0; }

@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Compare table ---------- */
.compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  overflow: hidden;
  background: #fff;
  font-size: 15px;
}
.compare th, .compare td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-soft);
}
.compare thead th {
  background: var(--cream-100);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--granat);
  font-size: 14px;
}
.compare tbody tr:last-child td { border-bottom: 0; }
.compare .yes { color: var(--turkus-700); font-weight: 600; }
.compare .no { color: var(--muted); }
.compare .col-us { background: rgba(20,184,166,0.06); }
.compare th.col-us { background: rgba(20,184,166,0.12); }

/* ---------- Pricing ---------- */
.pricing {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-4);
  padding: 32px;
  display: flex; flex-direction: column;
  position: relative;
}
.plan.featured {
  background: var(--granat);
  color: #c9d1e2;
  border-color: var(--granat);
}
.plan.featured h3 { color: #fff; }
.plan.featured .price { color: #fff; }
.plan .badge {
  position: absolute; top: 18px; right: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  background: var(--turkus);
  color: #fff;
  padding: 4px 10px; border-radius: 999px;
  letter-spacing: 0.08em;
}
.plan h3 { font-size: 22px; margin-bottom: 4px; }
.plan .sub { font-size: 14px; color: var(--muted); }
.plan.featured .sub { color: #9aa5bd; }
.plan .price {
  font-family: var(--font-display);
  font-size: 44px; font-weight: 600;
  letter-spacing: -0.02em;
  margin: 22px 0 4px;
  color: var(--granat);
}
.plan .price .per { font-size: 15px; font-weight: 400; color: var(--muted); font-family: var(--font-body); }
.plan.featured .price .per { color: #9aa5bd; }
.plan .price-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--turkus-700);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.plan.featured .price-note { color: var(--turkus); }
.plan ul {
  list-style: none; padding: 0; margin: 22px 0 22px;
  display: grid; gap: 10px;
}
.plan ul li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.5px;
}
.plan ul li::before {
  content: ""; flex: 0 0 18px; height: 18px;
  margin-top: 3px; border-radius: 4px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f766e' stroke-width='3'><path d='M5 12l4 4 10-10'/></svg>");
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
}
.plan.featured ul li::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314b8a6' stroke-width='3'><path d='M5 12l4 4 10-10'/></svg>");
}
.plan .cta { margin-top: auto; }
.plan .cta .btn { width: 100%; justify-content: center; }
.plan .planned {
  font-family: var(--font-mono);
  font-size: 11px;
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(107,91,255,0.12);
  color: var(--violet);
  letter-spacing: 0.06em;
}
.plan.featured .planned { background: rgba(107,91,255,0.22); color: #b6acff; }

@media (max-width: 720px) { .pricing { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 8px; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  padding: 4px 18px;
}
.faq details[open] { border-color: var(--cream-200); box-shadow: var(--shadow-card); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--granat);
  font-size: 17px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; color: var(--turkus-700);
  font-weight: 400; font-size: 22px;
  transition: transform 0.15s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details > div {
  padding: 0 0 20px 0;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.65;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--granat);
  color: #c9d1e2;
  border-radius: var(--r-4);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -100px; top: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(closest-side, rgba(20,184,166,0.22), transparent 70%);
  pointer-events: none;
}
.cta-band h2 { color: #fff; margin: 0 0 8px; }
.cta-band p { color: #b4bdd2; margin: 0; }
.cta-band .form { display: block; }
.cta-band input[type="email"],
.cta-band input[type="text"],
.cta-band .ksefakt-waitlist-form input[type="email"],
.cta-band .ksefakt-waitlist-form input[type="text"] {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid #2a3550 !important;
  color: #fff !important;
  padding: 12px 14px !important;
  border-radius: var(--r-2) !important;
  font: inherit !important;
  outline: none !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.cta-band input::placeholder { color: #7d89a3 !important; }
.cta-band input:focus { border-color: var(--turkus) !important; }
.cta-band .ksefakt-waitlist-form label { color: #c9d1e2; }
.cta-band .ksefakt-waitlist-form a { color: var(--turkus); text-decoration: underline; }
.cta-band .form .btn { justify-content: center; width: 100%; }
.cta-band .form-note { color: #7d89a3; font-size: 12.5px; }

@media (max-width: 880px) {
  .cta-band { grid-template-columns: 1fr; padding: 36px; }
}

/* ---------- Footer ---------- */
footer {
  background: var(--granat);
  color: #8b95ad;
  padding: 56px 0 32px;
  font-size: 14px;
}
footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
footer h5 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
footer ul a:hover { color: var(--turkus); }
footer .brand { color: #fff; }
footer .brand-mark { background: rgba(20,184,166,0.15); color: var(--turkus); }
footer .foot-bar {
  border-top: 1px solid var(--line-dark);
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12.5px; color: #6b7592;
}
footer .foot-bar .mono { color: #8b95ad; }

/* iter#26: globalny disclaimer prawny w stopce (BRIEF-STRONA-checkpointy #18). */
footer .foot-legal {
  margin-top: 32px;
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,0.10);
  border-left: 3px solid var(--turkus, #14b8a6);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
}
footer .foot-legal__disclaimer {
  margin: 0 0 12px;
  font-size: 13.5px;
  line-height: 1.55;
  color: #d4dae7;
}
footer .foot-legal__disclaimer strong { color: #fff; display: block; margin-bottom: 4px; }
footer .foot-legal__links {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.8;
  color: #6b7592;
}
footer .foot-legal__links a {
  color: #8b95ad;
  text-decoration: none;
  border-bottom: 1px dotted transparent;
  transition: color .15s, border-color .15s;
}
footer .foot-legal__links a:hover { color: var(--turkus, #14b8a6); border-bottom-color: var(--turkus, #14b8a6); }

/* iter#26: sticky B2B-only banner pod nav (BRIEF-STRONA-checkpointy #5). */
.b2b-banner {
  position: sticky;
  top: 0; /* nav sam jest sticky, ten siedzi tuz pod nim wizualnie */
  z-index: 50;
  background: linear-gradient(90deg, #fef3c7 0%, #fef9e7 100%);
  color: #78350f;
  border-bottom: 1px solid #fde68a;
  font-size: 13px;
  line-height: 1.4;
}
.b2b-banner .container {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 8px 16px;
  text-align: center;
}
.b2b-banner__icon { font-size: 14px; }
.b2b-banner strong { color: #713f12; font-weight: 700; }
.b2b-banner a { color: #713f12; text-decoration: underline; text-underline-offset: 2px; }
.b2b-banner a:hover { color: var(--turkus, #0F766E); }
@media (max-width: 720px) {
  .b2b-banner { font-size: 11.5px; }
  .b2b-banner .container { padding: 6px 12px; }
}

@media (max-width: 880px) {
  footer .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Page header ---------- */
.pagehead {
  padding: 60px 0 30px;
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(20,184,166,0.08), transparent 60%),
    var(--cream);
}
.pagehead .crumbs {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.pagehead .crumbs a { color: var(--turkus-700); }
.pagehead h1 { font-size: clamp(32px, 4.4vw, 52px); }
.pagehead p.lead { margin-top: 14px; max-width: 70ch; }

/* ---------- Long-form page content ---------- */
.prose { max-width: 720px; }
.prose h2 { margin-top: 48px; }
.prose h3 { margin-top: 32px; }
.prose ul, .prose ol { padding-left: 22px; }
.prose ul li, .prose ol li { margin-bottom: 6px; color: var(--ink-2); }
.prose p { font-size: 16.5px; }
.prose table { width: 100%; border-collapse: collapse; margin: 18px 0 22px; font-size: 15px; }
.prose th, .prose td { border: 1px solid var(--line); padding: 8px 12px; text-align: left; vertical-align: top; }
.prose th { background: var(--cream-100); font-weight: 600; }
.prose code { background: rgba(15,23,42,0.06); padding: 1px 6px; border-radius: 4px; font-size: 0.92em; font-family: var(--font-mono); }
.prose blockquote { border-left: 3px solid var(--turkus); margin: 18px 0; padding: 6px 0 6px 16px; color: var(--ink-2); font-style: italic; }
.prose .meta-stamp {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}

/* ---------- Roadmap ---------- */
.roadmap { display: grid; gap: 22px; }
.rm-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  padding: 24px 26px;
  align-items: start;
}
.rm-stamp {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
}
.rm-stamp .status {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  font-size: 11px;
  text-transform: uppercase;
  margin-top: 8px;
}
.rm-stamp .status.done { background: rgba(22,163,74,0.12); color: #15803d; }
.rm-stamp .status.now  { background: rgba(20,184,166,0.14); color: var(--turkus-700); }
.rm-stamp .status.next { background: rgba(11,15,26,0.08); color: var(--ink-2); }
.rm-stamp .status.plan { background: rgba(107,91,255,0.12); color: var(--violet); }
.rm-item h4 { margin: 0 0 6px; font-size: 18px; }
.rm-item ul { padding-left: 18px; margin: 8px 0 0; color: var(--ink-2); font-size: 15px; }
.rm-item ul li { margin-bottom: 4px; }

@media (max-width: 720px) { .rm-item { grid-template-columns: 1fr; } }

/* ---------- For-whom personas ---------- */
.persona {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  padding: 28px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: start;
}
.persona .who h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--turkus-700);
  margin: 0 0 6px;
}
.persona .who p { font-size: 14px; color: var(--muted); margin: 0; }
.persona .body h3 { font-size: 22px; margin-bottom: 6px; }
.persona .body p { font-size: 15.5px; }
.persona .body ul { padding-left: 18px; margin-top: 8px; }
.persona .body ul li { font-size: 14.5px; color: var(--ink-2); }

@media (max-width: 720px) { .persona { grid-template-columns: 1fr; } }

/* ---------- Quote / pull ---------- */
.pull {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
  color: var(--granat);
  letter-spacing: -0.015em;
  border-left: 3px solid var(--turkus);
  padding: 6px 0 6px 22px;
  max-width: 720px;
}

/* ---------- Mini stat row ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  padding: 22px;
}
.stat .num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--granat);
}
.stat .lbl { font-size: 13.5px; color: var(--muted); margin-top: 4px; }
@media (max-width: 720px) { .stats { grid-template-columns: 1fr 1fr; } }

/* ---------- Code-ish strip ---------- */
.codeline {
  background: var(--granat);
  color: #c9d1e2;
  border-radius: var(--r-2);
  padding: 14px 18px;
  font-family: var(--font-mono);
  font-size: 13.5px;
  display: flex; align-items: center; gap: 10px;
  border: 1px solid #1d2538;
}
.codeline .prompt { color: var(--turkus); }
.codeline .caret { animation: blink 1s steps(1) infinite; color: var(--turkus); }
@keyframes blink { 50% { opacity: 0; } }

/* ---------- Helpers ---------- */
.center { text-align: center; }
.muted { color: var(--muted); }
.granat-text { color: var(--granat); }
.spacer-3 { height: 12px; }
.spacer-5 { height: 24px; }
.spacer-7 { height: 48px; }
.hr {
  height: 1px;
  background: var(--line-soft);
  border: 0;
  margin: 0;
}


/* === userfix #2: gwiazdki, dyskleimer screen, podkreślenia cen === */
sup.gw {
  font-size: 0.6em;
  vertical-align: super;
  margin-left: 2px;
  color: var(--turkus, #0F766E);
  font-weight: 700;
  opacity: 0.85;
}
section.granat sup.gw { color: #5fe9d6; opacity: 0.9; }
.plan sup.gw { color: #5fe9d6; opacity: 0.9; }
h2 sup.gw, h3 sup.gw { font-size: 0.45em; vertical-align: super; margin-left: 3px; }

.screen-disclaimer {
  margin-top: 8px;
  font-size: 12.5px;
  color: #94A3B8;
  font-style: italic;
  text-align: center;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 4px;
}
section.granat .screen-disclaimer { color: #94A3B8; }
.hero-media { display: block; width: 100%; min-width: 0; }
.hero-media .screen-disclaimer { margin-top: 10px; }
.feature-media { min-width: 0; }

/* PRESALE BANNER — duży pasek nad cennikiem */
.presale-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  border: 2px solid #F59E0B;
  border-radius: 14px;
  margin: 0 0 32px 0;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.18);
  color: #78350F;
  font-size: 16px;
  line-height: 1.45;
}
.presale-banner .presale-icon {
  font-size: 32px;
  flex-shrink: 0;
}
.presale-banner strong {
  color: #78350F;
  font-weight: 800;
}
.presale-banner .presale-cta {
  display: inline-block;
  margin-left: 12px;
  padding: 6px 14px;
  background: #78350F;
  color: #FEF3C7;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}
.presale-banner .presale-cta:hover { background: #92400E; }

/* PRESALE TAG — mała plakietka pod ceną w karcie planu */
.presale-tag {
  display: inline-block;
  background: #FEF3C7;
  color: #78350F;
  border: 1px solid #F59E0B;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  margin: 10px 0 14px 0;
  line-height: 1.35;
}
.presale-tag--dark {
  background: rgba(245, 158, 11, 0.15);
  color: #FDE68A;
  border-color: rgba(245, 158, 11, 0.55);
}

/* GIGANT STARA CENA — wali po oczach, osobna linia nad ceną */
.price-was {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 14px 0;
}
.price-was .was-label {
  display: inline-block;
  background: #FEE2E2;
  color: #991B1B;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 6px;
}
.price-was .was-amount {
  font-size: 38px;
  font-weight: 900;
  color: #DC2626;
  text-decoration: line-through;
  text-decoration-color: #DC2626;
  text-decoration-thickness: 4px;
  text-decoration-skip-ink: none;
  letter-spacing: -0.01em;
  line-height: 1;
}
.price-was .price-save {
  display: inline-block;
  background: #16A34A;
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  box-shadow: 0 3px 10px rgba(22, 163, 74, 0.4);
  text-transform: uppercase;
  transform: rotate(-3deg);
}
.plan.featured .price-was .was-label {
  background: rgba(254, 226, 226, 0.18);
  color: #FEE2E2;
}
.plan.featured .price-was .was-amount {
  color: #FCA5A5;
  text-decoration-color: #FCA5A5;
}
.plan.featured .price-was .price-save {
  background: #22C55E;
  box-shadow: 0 3px 10px rgba(34, 197, 94, 0.5);
}

/* WZMOCNIENIE STAREJ CENY — mocna sygnalizacja "było drożej, kup teraz" (stary inline) */
.price-old {
  position: relative;
  display: inline-block;
  text-decoration: line-through;
  text-decoration-color: #DC2626;
  text-decoration-thickness: 3.5px;
  text-decoration-skip-ink: none;
  color: #DC2626 !important;
  font-weight: 800;
  font-size: 1.18em;
  margin: 0 6px;
  padding: 2px 8px;
  background: rgba(220, 38, 38, 0.08);
  border-radius: 6px;
  letter-spacing: 0.01em;
}
.price-old::before {
  content: "by\0142o ";
  display: inline-block;
  font-size: 0.65em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #991B1B;
  text-decoration: none;
  margin-right: 4px;
  vertical-align: middle;
  background: #FEE2E2;
  padding: 2px 6px;
  border-radius: 4px;
}
.plan.featured .price-old {
  color: #FCA5A5 !important;
  text-decoration-color: #FCA5A5;
  background: rgba(252, 165, 165, 0.15);
}
.plan.featured .price-old::before {
  color: #FEE2E2;
  background: rgba(254, 226, 226, 0.18);
}

/* Badge "−20%" — duży i krzyczący */
.price-save {
  display: inline-block;
  background: #16A34A;
  color: #fff;
  font-weight: 900;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.95em;
  margin-left: 8px;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 6px rgba(22, 163, 74, 0.35);
  text-transform: uppercase;
}
.plan.featured .price-save {
  background: #22C55E;
  box-shadow: 0 2px 6px rgba(34, 197, 94, 0.45);
}

/* "netto" badge przy cenie */
.price-net {
  display: inline-block;
  background: #1E293B;
  color: #fff;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.55em;
  vertical-align: middle;
  margin-left: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.plan.featured .price-net {
  background: #fff;
  color: #0F172A;
}

/* Fix kontrastu sekcji Firma (.plan.featured): kwota była słabo widoczna */
.plan.featured .price { color: #fff; }
.plan.featured .price .per { color: rgba(255,255,255,0.85); }
.plan.featured .price-note { color: rgba(255,255,255,0.92); }
.plan.featured .price-note .price-old { /* nadpisanie z góry – patrz wyżej */ }

/* Sekcja polecenia na granat — karty białe ALE czarny tekst i mocniejszy zielony */
section.granat#polecenia .card,
section.polecenia-light .card {
  background: #fff;
  color: #0F172A;
  border: 1px solid #E2E8F0;
}
section.granat#polecenia .card h3,
section.polecenia-light .card h3 {
  color: #0F172A !important;
}
section.granat#polecenia .card p,
section.polecenia-light .card p {
  color: #1E293B;
}
section.granat#polecenia .card .meta,
section.polecenia-light .card .meta {
  color: #047857 !important;   /* mocniejszy zielony, dobrze widoczny na białym */
  font-weight: 700;
  letter-spacing: 0.05em;
}
section.granat#polecenia .card strong,
section.polecenia-light .card strong {
  color: #047857;
}

/* Stopka Ranjil */
.foot-bar .made-by {
  color: #94A3B8;
  font-size: 13px;
  margin-left: 8px;
}
.foot-bar .made-by a { color: #CBD5E1; text-decoration: underline; }
.foot-bar .made-by a:hover { color: #fff; }

/* Article cards (blog) */
.article-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.article-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 24px; transition: transform 0.15s, box-shadow 0.15s; }
.article-card:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(15,23,42,0.06); }
.article-card .article-meta { color: #64748b; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.article-card h3 { margin: 12px 0 8px; font-size: 20px; line-height: 1.3; }
.article-card p { color: #475569; font-size: 15px; }
.article-card .article-link { color: var(--granat); font-weight: 600; text-decoration: none; margin-top: 12px; display: inline-block; }
.article-card .article-link:hover { text-decoration: underline; }

/* Customizer screen wrapper */
.screen-shot { width: 100%; max-width: 100%; height: auto; border-radius: 10px; border: 1px solid var(--line); display: block; }
.screen-frame { border-radius: 14px; overflow: hidden; background: #0F172A; padding: 8px; }



/* KSeF w 2 zdaniach — szerszy ale wciąż czytelny */
.granat-explainer-copy { max-width: 880px; }


/* Polec teaser — pełna szerokość, wycentrowany */
#polec-teaser .section-head {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}


/* Wyraźny banner pod sekcją "W planie" — informuje o bezpłatnych aktualizacjach */
.plan-note {
  margin-top: 28px;
  font-size: 15px;
  line-height: 1.55;
  color: #0b0f1a;
  background: linear-gradient(135deg, rgba(20,184,166,0.10), rgba(95,233,214,0.06));
  border: 1px solid rgba(20,184,166,0.30);
  border-left: 4px solid var(--turkus, #0F766E);
  padding: 16px 20px;
  border-radius: 14px;
}
.plan-note strong { color: var(--turkus, #0F766E); }
section.granat .plan-note {
  color: #ECF1F8;
  background: rgba(20,184,166,0.10);
  border-color: rgba(95,233,214,0.30);
  border-left-color: #5fe9d6;
}
section.granat .plan-note strong { color: #5fe9d6; }

/* Ujednolicony layout 3 trybów wysyłki — dwukolumnowy, równa czcionka */
.send-modes {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.send-modes li {
  display: grid;
  grid-template-columns: minmax(140px, 180px) 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 10px 14px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.send-modes li .mode {
  font-weight: 600;
  color: var(--ink-1);
  font-size: 15px;
}
.send-modes li .desc {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.5;
}
@media (max-width: 640px) {
  .send-modes li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* Footer foot-bar: prawe meta nie zawija się */
footer .foot-bar > span:last-child {
  flex-shrink: 0;
  white-space: nowrap;
}
footer .foot-bar > span:first-child {
  flex: 1 1 auto;
}

/* === B2B-only badge i banner — iter#16 === */
.b2b-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--granat);
  background: var(--turkus);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--turkus-700);
  white-space: nowrap;
}
.b2b-badge::before {
  content: "🏢";
  font-size: 14px;
}

.b2b-banner {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(20,184,166,0.12), rgba(20,184,166,0.04));
  border: 1px solid var(--turkus);
  border-left: 4px solid var(--turkus);
  border-radius: 12px;
  padding: 18px 22px;
  margin: 24px 0;
}
.b2b-banner .b2b-icon {
  font-size: 28px;
  line-height: 1;
  flex: 0 0 auto;
}
.b2b-banner .b2b-text {
  flex: 1;
  font-size: 15px;
  line-height: 1.55;
  color: var(--granat);
}
.b2b-banner .b2b-text strong {
  color: var(--turkus-700);
}
.b2b-note {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}
