/* ==========================================================================
   WEBISION — Dizajn systém (scoped pod .wbs)
   Súbor: wp-content/themes/pixion-child/assets/css/webision-design-system.css
   --------------------------------------------------------------------------
   POUŽITIE:
     Obal celý custom blok / landing page do  <div class="wbs"> ... </div>
     a NEPOUŽÍVAJ inline <style>. Všetky pôvodné triedy (.btn, .container,
     .hero, .feature-card …) fungujú bez premenovania.
   PREČO scoped:
     Všetko je pod .wbs → na hlavnom Elementor/Pixion webe sa to NEdotkne
     ničoho (žiadne kolízie s .container/.btn/.section builderu).
   POZN.:
     Pre full-page landing použi Elementor "Canvas" / blank template,
     aby chrome témy nezavadzal a .wbs dal tmavé pozadie na celú stránku.
   ========================================================================== */

.wbs {
  /* DESIGN TOKENS (scoped) */
  --bg:           #163031;
  --bg-card:      #1c3c3d;
  --bg-deep:      #12282a;
  --border:       rgba(255,255,255,0.08);
  --accent:       #168AB6;
  --accent-glow:  rgba(22,138,182,0.25);
  --green:        #B4FF9C;
  --green-glow:   rgba(180,255,156,0.2);
  --text:         #f8f8f8;
  --muted:        rgba(248,248,248,0.55);  /* meta/labely — zámerne tlmené */
  --text-body:    rgba(248,248,248,0.88);  /* čitateľné odstavce/odpovede */
  --font:         'Montserrat', sans-serif;
  --radius:       16px;
  --radius-btn:   30px;

  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.7;
  position: relative;
  overflow-x: hidden;
}

.wbs *, .wbs *::before, .wbs *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Grid background */
.wbs::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.wbs .container { max-width: 1400px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ── SECTION LABEL ── */
.wbs .section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--green); margin-bottom: 16px;
}
.wbs .section-label::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px var(--green);
}

/* ── HERO ── */
.wbs .hero { position: relative; padding: 100px 0 80px; overflow: hidden; }
.wbs .hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(22,138,182,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.wbs .hero::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(180,255,156,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.wbs .hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.wbs .hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(180,255,156,0.08); border: 1px solid rgba(180,255,156,0.2);
  border-radius: 30px; padding: 6px 16px; font-size: 12px; font-weight: 600;
  color: var(--green); margin-bottom: 24px;
}
.wbs .hero h1 {
  font-size: clamp(36px, 5vw, 58px); font-weight: 900; line-height: 1.1;
  letter-spacing: -1.5px; margin-bottom: 20px;
}
.wbs .hero h1 .accent-blue { color: var(--accent); }  /* .accent rieši gradientový text vyššie */
.wbs .hero p { color: var(--text-body); font-size: 16px; line-height: 1.8; margin-bottom: 36px; max-width: 480px; }
.wbs .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.wbs .btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-weight: 700; font-size: 14px;
  border-radius: var(--radius-btn); padding: 15px 32px;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.25s ease; letter-spacing: 0.3px;
}
/* PRIMARY — gradientový button v štýle témy (Pixion/ElementsKit) */
.wbs .btn-primary {
  background-color: var(--accent);                 /* fallback */
  background-image: linear-gradient(to right, var(--green) 0%, var(--accent) 50%, var(--green) 100%);
  background-size: 200% auto;
  background-position: 0% center;
  background-repeat: no-repeat;
  color: var(--bg);                                /* tmavý text #163031 */
  box-shadow: none;
  transition: background-position 0.4s ease-in-out, transform 0.15s ease;
}
.wbs .btn-primary:hover {
  background-position: 100% center;                /* gradient sa prešmykne */
  color: var(--bg);
  transform: translateY(-2px);
}
/* OUTLINE — ladí k primary */
.wbs .btn-outline {
  background: transparent; color: var(--text);
  border: 2px solid var(--accent); padding: 13px 30px;  /* -2px kvôli borderu, nech sedí výška */
}
.wbs .btn-outline:hover {
  background: var(--green); border-color: var(--green); color: var(--bg);
  transform: translateY(-2px);
}

/* skupina tlačidiel (CTA) — medzera funguje aj pri zalomení na mobile */
.wbs .btn-group { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ── HERO MOCKUP ── */
.wbs .hero-visual { position: relative; }
.wbs .mockup-card {
  background: linear-gradient(135deg, rgba(28,60,61,0.9), rgba(22,48,49,0.95));
  border: 1px solid rgba(180,255,156,0.15); border-radius: 24px; padding: 28px;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
}
.wbs .mockup-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 24px;
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.wbs .mockup-dots { display: flex; gap: 6px; }
.wbs .mockup-dots span { width: 10px; height: 10px; border-radius: 50%; }
.wbs .mockup-dots span:nth-child(1) { background: #ff5f57; }
.wbs .mockup-dots span:nth-child(2) { background: #febc2e; }
.wbs .mockup-dots span:nth-child(3) { background: #28c840; }
.wbs .mockup-title { font-size: 13px; font-weight: 600; color: var(--muted); }
.wbs .claim-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; border-radius: 10px; background: rgba(255,255,255,0.03);
  border: 1px solid var(--border); margin-bottom: 8px; transition: background 0.2s;
}
.wbs .claim-row:hover { background: rgba(255,255,255,0.05); }
.wbs .claim-info { display: flex; align-items: center; gap: 12px; }
.wbs .claim-icon {
  width: 36px; height: 36px; border-radius: 10px; display: flex;
  align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0;
}
.wbs .claim-icon.blue { background: rgba(22,138,182,0.2); }
.wbs .claim-icon.green { background: rgba(180,255,156,0.15); }
.wbs .claim-icon.orange { background: rgba(255,165,50,0.15); }
.wbs .claim-icon.red { background: rgba(255,80,80,0.15); }
.wbs .claim-name { font-size: 13px; font-weight: 600; }
.wbs .claim-id { font-size: 11px; color: var(--muted); }
.wbs .status-badge { font-size: 11px; font-weight: 700; border-radius: 20px; padding: 4px 12px; }
.wbs .status-new { background: rgba(22,138,182,0.2); color: var(--accent); }
.wbs .status-review { background: rgba(255,165,50,0.15); color: #ffa832; }
.wbs .status-resolved { background: rgba(180,255,156,0.15); color: var(--green); }
.wbs .status-pending { background: rgba(248,248,248,0.1); color: var(--muted); }
.wbs .mockup-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 16px; }
.wbs .stat-box { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 12px; padding: 14px; text-align: center; }
.wbs .stat-number { font-size: 22px; font-weight: 800; color: var(--green); display: block; }
.wbs .stat-label { font-size: 11px; color: var(--muted); font-weight: 500; }
.wbs .float-badge {
  position: absolute; background: linear-gradient(135deg, rgba(28,60,61,0.95), rgba(22,48,49,0.98));
  border: 1px solid rgba(180,255,156,0.25); border-radius: 14px; padding: 12px 16px;
  font-size: 12px; font-weight: 600; backdrop-filter: blur(10px); box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.wbs .float-badge.top-left { top: -20px; left: -30px; color: var(--green); }
.wbs .float-badge.bottom-right { bottom: -20px; right: -20px; color: var(--accent); }

/* ── STATS BAR ── */
.wbs .stats-bar { padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; z-index: 1; }
.wbs .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.wbs .stat-item { text-align: center; padding: 20px; border-right: 1px solid var(--border); }
.wbs .stat-item:last-child { border-right: none; }
.wbs .stat-item .number { font-size: 36px; font-weight: 800; color: var(--green); display: block; line-height: 1; margin-bottom: 6px; }
.wbs .stat-item .label { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ── SECTION + FEATURES ── */
.wbs .section { padding: 80px 0; position: relative; z-index: 1; }
.wbs .section-header { text-align: center; margin-bottom: 56px; }
.wbs .section-header h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -1px; margin-bottom: 14px; line-height: 1.2; }
.wbs .section-header h2 .blue { color: var(--accent); -webkit-text-fill-color: var(--accent); background: none; }  /* explicitná solídna modrá (prebije gradient) */
.wbs .section-header p { color: var(--text-body); font-size: 16px; max-width: 560px; margin: 0 auto; line-height: 1.8; }
.wbs .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.wbs .feature-card {
  background: linear-gradient(135deg, rgba(28,60,61,0.7), rgba(22,48,49,0.8));
  border: 1px solid var(--border); border-radius: 20px; padding: 28px;
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.wbs .feature-card:hover { border-color: rgba(180,255,156,0.2); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.wbs .feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--green), transparent); opacity: 0; transition: opacity 0.3s; }
.wbs .feature-card:hover::before { opacity: 1; }
.wbs .feature-icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(22,138,182,0.15); border: 1px solid rgba(22,138,182,0.25); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px; }
.wbs .feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.wbs .feature-card p { font-size: 13px; color: var(--text-body); line-height: 1.7; }
/* odkaz v karte (nahrádza inline štýly „Zistiť viac →") */
.wbs .feature-link {
  display: inline-block; margin-top: 14px;
  color: var(--accent); font-size: 13px; font-weight: 700;
  text-decoration: none; transition: color 0.2s ease, transform 0.2s ease;
}
.wbs .feature-link:hover { color: var(--green); transform: translateX(3px); }

/* ── INLINE TEXTOVÉ ODKAZY (bežné linky v obsahu) ── */
/* Gradientový text ako v téme (.elementor-widget-text-editor p a), na .wbs tokenoch */
.wbs p a, .wbs p a strong,
.wbs li a,
.wbs .faq-answer a {
  background-image: linear-gradient(to right, var(--green) 0%, var(--accent) 50%, var(--green) 100%);
  background-size: 200% auto;
  background-position: 0% center;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--accent);            /* fallback pre prehliadače bez clip:text */
  font-weight: 600;
  text-decoration: none;
  transition: background-position 0.4s ease-in-out;
}
.wbs p a:hover, .wbs p a:hover strong,
.wbs li a:hover,
.wbs .faq-answer a:hover {
  background-position: 100% center;   /* gradient sa prešmykne */
}

/* ── GRADIENTOVÝ TEXT V NADPISOCH (jednota s témou: .elementor-heading-title span) ── */
/* .text-gradient = znovupoužiteľná trieda na akýkoľvek <span> v nadpise.
   Naše existujúce accent-spany (h2 span, hero .accent, cta span) dedia gradient automaticky. */
.wbs .text-gradient,
.wbs .hero h1 .accent,
.wbs .section-header h2 span,
.wbs .cta-box h2 span {
  background-image: linear-gradient(to right, var(--green) 0%, var(--accent) 50%, var(--green) 100%);
  background-size: 200% auto;
  background-position: 0% center;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--green);   /* fallback pre prehliadače bez clip:text */
  transition: background-position 0.5s ease-in-out;
}
/* hover = gradient sa prešmykne (ako téma .section-heading:hover span) */
.wbs .section-header h2:hover span,
.wbs .hero h1:hover .accent,
.wbs .cta-box h2:hover span,
.wbs .text-gradient:hover {
  background-position: 100% center;
}

/* ── COMPARISON / FREE vs PRO ── */
.wbs .comparison { background: rgba(0,0,0,0.15); }
.wbs .compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.wbs .compare-card { background: linear-gradient(135deg, rgba(28,60,61,0.8), rgba(22,48,49,0.9)); border: 1px solid var(--border); border-radius: 24px; overflow: hidden; }
.wbs .compare-card.pro { border-color: rgba(180,255,156,0.25); box-shadow: 0 0 60px rgba(180,255,156,0.06); }
.wbs .compare-header { padding: 28px 32px 20px; border-bottom: 1px solid var(--border); }
.wbs .compare-header .plan-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; margin-bottom: 12px; }
.wbs .plan-tag.free-tag { background: rgba(255,255,255,0.08); color: var(--muted); }
.wbs .plan-tag.pro-tag { background: rgba(180,255,156,0.15); color: var(--green); }
.wbs .compare-header h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.wbs .compare-header p { color: var(--text-body); font-size: 13px; }
.wbs .compare-list { padding: 24px 32px 32px; list-style: none; }
.wbs .compare-list li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 14px; color: var(--text-body); }
.wbs .compare-list li:last-child { border-bottom: none; }
.wbs .check { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; margin-top: 1px; }
.wbs .check.yes { background: rgba(180,255,156,0.15); color: var(--green); }
.wbs .check.no  { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.2); }
.wbs .check.pro-check { background: rgba(22,138,182,0.2); color: var(--accent); }

/* ── SHORTCODES ── */
.wbs .shortcodes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.wbs .shortcode-card { background: linear-gradient(135deg, rgba(28,60,61,0.7), rgba(22,48,49,0.85)); border: 1px solid var(--border); border-radius: 20px; padding: 32px; transition: border-color 0.3s; }
.wbs .shortcode-card:hover { border-color: rgba(22,138,182,0.25); }
.wbs .shortcode-chip { display: inline-block; background: rgba(22,138,182,0.12); border: 1px solid rgba(22,138,182,0.25); border-radius: 8px; padding: 8px 16px; font-family: 'Courier New', monospace; font-size: 13px; color: var(--accent); font-weight: 700; margin-bottom: 20px; letter-spacing: 0.5px; }
.wbs .shortcode-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.wbs .shortcode-card p { color: var(--text-body); font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.wbs .compat-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.wbs .compat-tag { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 20px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); color: var(--muted); }

/* ── STATUS PILLS ── */
.wbs .statuses-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 40px; }
.wbs .status-pill { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 50px; padding: 12px 22px; font-size: 14px; font-weight: 600; transition: all 0.25s; }
.wbs .status-pill:hover { transform: translateY(-2px); }
.wbs .status-dot { width: 10px; height: 10px; border-radius: 50%; }

/* ── REQUIREMENTS ── */
.wbs .req-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.wbs .req-card { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 16px; padding: 20px; text-align: center; }
.wbs .req-icon { font-size: 28px; margin-bottom: 10px; display: block; }
.wbs .req-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 4px; }
.wbs .req-value { font-size: 14px; font-weight: 700; color: var(--text); }

/* ── CTA ── */
.wbs .cta-section { padding: 100px 0; position: relative; z-index: 1; overflow: hidden; }
.wbs .cta-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(180,255,156,0.08) 0%, transparent 65%); pointer-events: none; }
.wbs .cta-box { background: linear-gradient(135deg, rgba(28,60,61,0.9), rgba(22,48,49,0.95)); border: 1px solid rgba(180,255,156,0.2); border-radius: 28px; padding: 60px; text-align: center; position: relative; overflow: hidden; }
.wbs .cta-box::before { content: ''; position: absolute; top: -80px; right: -80px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(22,138,182,0.15), transparent 70%); pointer-events: none; }
.wbs .cta-box h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 900; letter-spacing: -1px; margin-bottom: 16px; }
/* .cta-box h2 span → gradientový text (viď sekcia GRADIENTOVÝ TEXT) */
.wbs .cta-box p { color: var(--muted); font-size: 16px; max-width: 520px; margin: 0 auto 40px; line-height: 1.8; }
.wbs .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.wbs .cta-note { margin-top: 20px; font-size: 12px; color: rgba(248,248,248,0.35); }

/* ── FAQ ── */
.wbs .faq-list { max-width: 760px; margin: 0 auto; }
.wbs .faq-item { border-bottom: 1px solid var(--border); }
.wbs .faq-question { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; cursor: pointer; font-size: 15px; font-weight: 600; color: var(--text); gap: 16px; transition: color 0.2s; list-style: none; }
.wbs .faq-question:hover { color: var(--green); }
.wbs .faq-question .faq-icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 16px; transition: all 0.25s; color: var(--muted); }
.wbs details[open] .faq-question .faq-icon { background: rgba(180,255,156,0.12); border-color: rgba(180,255,156,0.3); color: var(--green); transform: rotate(45deg); }
.wbs .faq-answer { padding: 0 0 22px; color: var(--text-body); font-size: 14px; line-height: 1.8; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .wbs .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .wbs .features-grid { grid-template-columns: 1fr 1fr; }
  .wbs .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .wbs .stat-item:nth-child(2) { border-right: none; }
  .wbs .req-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .wbs .features-grid { grid-template-columns: 1fr; }
  .wbs .compare-grid  { grid-template-columns: 1fr; }
  .wbs .shortcodes-grid { grid-template-columns: 1fr; }
  .wbs .stats-grid { grid-template-columns: 1fr 1fr; }
  .wbs .cta-box { padding: 36px 20px; }
  .wbs .mockup-stats { grid-template-columns: repeat(3, 1fr); }
  .wbs .hero { padding: 60px 0 50px; }
}
@media (max-width: 480px) {
  .wbs .btn-group .btn { width: 100%; }
}

/* Scrollbar (globálne, kozmetické — voliteľné) */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #163031; }
::-webkit-scrollbar-thumb { background: #168AB6; border-radius: 3px; }

/* ── PRICING (balíky — layout v štýle témy) ───────────────────────────────── */
.wbs .pricing-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; align-items: stretch; }

/* Intro / „na mieru" karta — plný gradient ako téma */
.wbs .price-intro {
  background: linear-gradient(150deg, var(--green), var(--accent));
  border-radius: 24px; padding: 36px; color: var(--bg);
  display: flex; flex-direction: column;
}
.wbs .price-intro .pi-icon {
  width: 56px; height: 56px; border-radius: 16px; background: rgba(22,48,49,0.12);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--bg);
}
.wbs .price-intro h3 { font-size: 22px; font-weight: 800; line-height: 1.25; margin-bottom: 12px; color: var(--bg); }
.wbs .price-intro p { font-size: 14px; line-height: 1.7; color: rgba(22,48,49,0.82); margin-bottom: auto; }
.wbs .price-intro .btn { margin-top: 28px; align-self: flex-start; }

/* Karta balíka */
.wbs .price-card {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(28,60,61,0.7), rgba(22,48,49,0.85));
  border: 1px solid var(--border); border-radius: 24px; padding: 36px;
  display: flex; flex-direction: column; transition: border-color .3s ease, transform .3s ease;
}
.wbs .price-card:hover { border-color: rgba(180,255,156,0.25); transform: translateY(-4px); }
.wbs .price-card.featured { border-color: rgba(180,255,156,0.4); box-shadow: 0 0 60px rgba(180,255,156,0.07); }

/* „Obľúbené" stuha (diagonálna, vpravo hore) */
.wbs .price-ribbon {
  position: absolute; top: 20px; right: -36px; transform: rotate(45deg);
  background: linear-gradient(to right, var(--green), var(--accent));
  color: var(--bg); font-size: 11px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; padding: 6px 46px;
}

.wbs .price-name { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.wbs .price-sub { font-size: 13px; color: var(--text-body); line-height: 1.6; margin-bottom: 22px; min-height: 42px; }
.wbs .price-amount { font-size: 42px; font-weight: 900; color: var(--green); line-height: 1; margin-bottom: 4px; }
.wbs .price-amount .from { font-size: 14px; font-weight: 600; color: var(--text-body); margin-right: 6px; vertical-align: middle; }
.wbs .price-amount .cur { font-size: 22px; margin-left: 4px; vertical-align: middle; }
.wbs .price-period { font-size: 13px; color: var(--muted); margin-bottom: 26px; }

.wbs .price-list { list-style: none; margin: 0 0 28px; }
.wbs .price-list li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: 14px; color: var(--text-body); }
.wbs .price-tick { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: rgba(180,255,156,0.15); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 11px; margin-top: 1px; }
.wbs .price-card .btn { margin-top: auto; width: 100%; justify-content: center; }

/* Tmavé tlačidlo (na svetlej gradient karte) */
.wbs .btn-dark { background: var(--bg); color: var(--text); }
.wbs .btn-dark:hover { background: var(--bg-deep); color: var(--text); transform: translateY(-2px); }

/* Poznámka pod cenníkom */
.wbs .price-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 28px; }

@media (max-width: 900px) { .wbs .pricing-grid { grid-template-columns: 1fr; } }

/* 2-stĺpcový cenník (len Vizitka + Eshop) — vycentrovaný */
.wbs .pricing-grid.two { grid-template-columns: repeat(2, minmax(0,1fr)); max-width: 880px; margin-left: auto; margin-right: auto; }
@media (max-width: 900px) { .wbs .pricing-grid.two { grid-template-columns: 1fr; } }

/* ── PORTFOLIO CASE STUDY (.bwpf-*) — detail projektu ─────────────────────── */
.wbs .bwpf-article { max-width: 1920px; margin: 0 auto; }
.wbs .bwpf-article h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; letter-spacing: -0.5px; line-height: 1.2; margin: 40px 0 16px; }
.wbs .bwpf-article h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.wbs .bwpf-article p  { color: var(--text-body); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.wbs .bwpf-article strong { color: var(--text); }
 
/* Lead odsek */
.wbs .bwpf-lead { font-size: 19px; line-height: 1.7; color: var(--text-body); margin-bottom: 30px; }
 
/* Zoznamy s diamantovou odrážkou */
.wbs .bwpf-article ul { list-style: none; margin: 0 0 26px; padding: 0; }
.wbs .bwpf-article ul li { position: relative; padding-left: 26px; margin-bottom: 12px; color: var(--text-body); line-height: 1.7; }
.wbs .bwpf-article ul li::before { content: ''; position: absolute; left: 2px; top: 9px; width: 8px; height: 8px; border-radius: 2px; background: var(--green); transform: rotate(45deg); }
 
/* Štatistiky */
.wbs .bwpf-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 4px 0 34px; }
.wbs .bwpf-stat { background: linear-gradient(135deg, rgba(28,60,61,0.7), rgba(22,48,49,0.85)); border: 1px solid var(--border); border-radius: 16px; padding: 22px; text-align: center; }
.wbs .bwpf-stat b { display: block; font-size: 30px; font-weight: 900; color: var(--green); line-height: 1; margin-bottom: 6px; }
.wbs .bwpf-stat span { font-size: 13px; color: var(--muted); }
 
/* Tabuľka pred/po */
.wbs .bwpf-table { width: 100%; border-collapse: collapse; margin: 6px 0 30px; font-size: 14px; }
.wbs .bwpf-table th, .wbs .bwpf-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.wbs .bwpf-table thead th { color: var(--green); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; font-size: 12px; border-bottom: 1px solid rgba(180,255,156,0.25); }
.wbs .bwpf-table tbody td { color: var(--text-body); }
.wbs .bwpf-table tbody td:first-child { color: var(--text); font-weight: 600; }
.wbs .bwpf-table tbody tr:hover { background: rgba(255,255,255,0.02); }
 
/* Callout (výsledok) */
.wbs .bwpf-callout { background: rgba(180,255,156,0.08); border: 1px solid rgba(180,255,156,0.25); border-left: 3px solid var(--green); border-radius: 12px; padding: 18px 22px; margin: 6px 0 30px; color: var(--text-body); }
.wbs .bwpf-callout strong { color: var(--green); }
 
/* 2-stĺpcový blok (technológie / rozsah) */
.wbs .bwpf-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 6px; }
.wbs .bwpf-grid-2 > div { background: linear-gradient(135deg, rgba(28,60,61,0.7), rgba(22,48,49,0.85)); border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.wbs .bwpf-grid-2 p { margin-bottom: 0; }
 
@media (max-width: 640px) {
  .wbs .bwpf-stats { grid-template-columns: 1fr; }
  .wbs .bwpf-grid-2 { grid-template-columns: 1fr; }
}
 
/* ── CTA box v case study (.bwpf-cta) ─────────────────────────────────────── */
.wbs .bwpf-cta { text-align: center; background: linear-gradient(135deg, rgba(28,60,61,0.9), rgba(22,48,49,0.95)); border: 1px solid rgba(180,255,156,0.2); border-radius: 24px; padding: 40px 32px; margin: 40px 0 0; }
.wbs .bwpf-cta h3 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; color: var(--text); margin-bottom: 10px; }
.wbs .bwpf-cta p { color: var(--text-body); font-size: 15px; line-height: 1.7; max-width: 460px; margin: 0 auto 24px; }
.wbs .bwpf-cta a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px; border-radius: var(--radius-btn);
  background-color: #168AB6;
  background-image: linear-gradient(to right, var(--green) 0%, var(--accent) 50%, var(--green) 100%);
  background-size: 200% auto; background-position: 0% center; background-repeat: no-repeat;
  color: var(--bg); font-weight: 700; font-size: 15px; text-decoration: none;
  transition: background-position 0.4s ease-in-out, transform 0.15s ease;
}
.wbs .bwpf-cta a:hover { background-position: 100% center; color: var(--bg); transform: translateY(-2px); }
 
/* ── PRIDRUŽENÉ KATEGÓRIE ako buttony (Elementor „Post Terms" widget) ─────────
   Widgetu pridaj CSS triedu:  wbs-terms
   (nie je scoped pod .wbs, lebo Post Terms widget býva mimo .wbs wrappera) */
.wbs-terms, .wbs-terms .elementor-widget-container { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.wbs-terms a {
  display: inline-flex; align-items: center;
  padding: 8px 18px; border: 2px solid #168AB6; border-radius: 30px;
  color: #f8f8f8; -webkit-text-fill-color: #f8f8f8;     /* poistka proti gradient-link pravidlu, ak by bol v .wbs */
  font-weight: 600; font-size: 13px; line-height: 1; text-decoration: none;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.wbs-terms a:hover {
  background: #B4FF9C; border-color: #B4FF9C;
  color: #163031; -webkit-text-fill-color: #163031;
}

/* ==========================================================================
   WEBISION — DOPLNOK pre podstránky služieb (obrázky, media-split, kroky,
   FAQ v štýle témy, väčšie medzery)
   PRIDAŤ NA KONIEC: pixion-child/assets/css/webision-design-system.css
   Musí byť ZA pôvodnými .faq pravidlami (preto override funguje).
   ========================================================================== */

/* ── Figúry / obrázky v obsahu ── */
.wbs figure.wbs-media { margin: 0 0 28px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); line-height: 0; }
.wbs figure.wbs-media img { display: block; width: 100%; height: auto; }

/* ── Obrázok + text vedľa seba ── */
.wbs .wbs-media-split { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 36px; align-items: center; }
.wbs .wbs-media-split figure.wbs-media { margin: 0; }
.wbs .wbs-media-split .wbs-media-body > :first-child { margin-top: 0; }
.wbs .wbs-media-split .wbs-media-body p { color: var(--text-body); font-size: 15px; line-height: 1.8; }
@media (max-width: 780px) { .wbs .wbs-media-split { grid-template-columns: 1fr; gap: 20px; } }

/* ── Číslované kroky (proces) ── */
.wbs .wbs-steps { display: grid; gap: 16px; }
.wbs .wbs-step { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start;
  background: linear-gradient(135deg, rgba(28,60,61,0.7), rgba(22,48,49,0.85)); border: 1px solid var(--border);
  border-radius: 16px; padding: 22px 24px; }
.wbs .wbs-step .num { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px; color: var(--bg); background-image: linear-gradient(to right, var(--green), var(--accent)); }
.wbs .wbs-step h3 { margin: 4px 0 6px; font-size: 16px; color: var(--text); }
.wbs .wbs-step p { margin: 0; font-size: 14px; color: var(--text-body); line-height: 1.7; }

/* ──────────────────────────────────────────────────────────────────────────
   FAQ V ŠTÝLE TÉMY — karty s medzerami, gradient pri otvorení (zhoda s Pixionom)
   ────────────────────────────────────────────────────────────────────────── */
.wbs .svc .faq-list { max-width: none; margin: 0; }
.wbs .faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(28,60,61,0.55), rgba(22,48,49,0.75));
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .25s, background .25s;
}
.wbs .faq-item:hover { border-color: rgba(180,255,156,0.25); }
.wbs .faq-question { padding: 18px 22px; font-size: 15px; }
.wbs .faq-answer   { padding: 0 22px 20px; }

/* otvorená položka = gradient zelená→modrá, tmavý text (ako téma) */
.wbs .faq-item[open] {
  background-image: linear-gradient(120deg, var(--green) 0%, var(--accent) 100%);
  border-color: transparent;
}
.wbs .faq-item[open] .faq-question { color: var(--bg); }
.wbs .faq-item[open] .faq-answer   { color: rgba(18,40,42,0.92); }
.wbs .faq-item[open] .faq-question .faq-icon { background: rgba(0,0,0,0.16); border-color: transparent; color: var(--bg); }
/* odkazy vnútri otvorenej položky musia byť čitateľné na gradiente */
.wbs .faq-item[open] .faq-answer a {
  background: none; -webkit-text-fill-color: var(--bg); color: var(--bg);
  text-decoration: underline; font-weight: 700;
}

/* ──────────────────────────────────────────────────────────────────────────
   VÄČŠIE MEDZERY (vzdušnejší obsahový stĺpec)
   ────────────────────────────────────────────────────────────────────────── */
.wbs .svc h2 { font-size: clamp(24px, 3.2vw, 34px); font-weight: 800; letter-spacing: -0.5px; line-height: 1.2; margin: 64px 0 18px; }
.wbs .svc h2:first-child { margin-top: 0; }
.wbs .svc > p { color: var(--text-body); font-size: 15px; line-height: 1.85; margin-bottom: 18px; }
.wbs .svc figure.wbs-media { margin-bottom: 40px; }
.wbs .svc ul { margin: 8px 0 34px; }
.wbs .svc .features-grid { gap: 24px; margin: 12px 0 8px; }
.wbs .svc .bwpf-stats { margin: 22px 0 8px; }
.wbs .svc .wbs-media-split { margin: 36px 0 60px; }
.wbs .svc .wbs-steps { margin: 16px 0 56px; }
.wbs .svc .faq-list { margin-bottom: 52px; }
.wbs .svc .cta-box { margin-top: 16px; }

/* ──────────────────────────────────────────────────────────────────────────
   HOVER EFEKT NA OBRÁZKY — zoom + lesklý prelet (shine/glass) + accent rám
   (čisto CSS, bez JS; platí pre všetky .wbs-media)
   ────────────────────────────────────────────────────────────────────────── */
.wbs figure.wbs-media { position: relative; transition: border-color .3s, box-shadow .3s; }
.wbs figure.wbs-media img { transition: transform .6s cubic-bezier(.2,.7,.2,1); will-change: transform; }

/* zoom */
.wbs figure.wbs-media:hover img { transform: scale(1.05); }

/* accent rám + tieň */
.wbs figure.wbs-media:hover { border-color: rgba(180,255,156,0.30); box-shadow: 0 16px 44px rgba(0,0,0,0.35); }

/* lesklý prelet (glass shine) */
.wbs figure.wbs-media::after {
  content: ""; position: absolute; top: 0; left: -75%; width: 55%; height: 100%; z-index: 2;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.28) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg); pointer-events: none;
}
.wbs figure.wbs-media:hover::after { animation: wbsShine .9s ease; }
@keyframes wbsShine { from { left: -75%; } to { left: 130%; } }

/* responzívnosť (poistka) */
.wbs figure.wbs-media img { display: block; width: 100%; height: auto; }

/* prístupnosť — vypni animácie pri prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .wbs figure.wbs-media img { transition: none; }
  .wbs figure.wbs-media:hover img { transform: none; }
  .wbs figure.wbs-media:hover::after { animation: none; }
}

/* ============================================================
   WEBISION — HERO BANNER stránok služieb
   Pixion design systém: #163031 / #168AB6 / #B4FF9C / Montserrat
   Obrázok sa mení v HTML (<img class="wbs-hero-bg">), CSS je
   spoločné pre všetky služby.
   ============================================================ */
 
/* ===== HERO — desktop (default) ===== */
.wbs-hero {
    position: relative;
    padding: 60px 0 90px;
    background: #163031;   /* fallback kým sa obrázok načíta */
    overflow: hidden;
    z-index: 1;
}
 
/* obrázok na pozadí — mení sa podľa služby v HTML */
.wbs-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    z-index: -2;
}
 
/* tmavý gradient overlay pre čitateľnosť textu */
.wbs-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(22,48,49,.96) 0%, rgba(22,48,49,.82) 45%, rgba(22,48,49,.35) 100%);
    z-index: -1;
}
 
.wbs-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
 
/* kicker / badge */
.wbs-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #B4FF9C;
    margin-bottom: 18px;
}
.wbs-hero-kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    background: #B4FF9C;
}
 
/* nadpis */
.wbs-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    color: #F8F8F8;
    max-width: 640px;
    margin: 0 0 20px;
}
 
/* perex */
.wbs-hero-lead {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(248,248,248,.85);
    max-width: 540px;
    margin: 0 0 36px;
}
 
/* štatistiky (cena / hosting / termín) */
.wbs-hero-stats {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
}
.wbs-hero-stat b {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #F8F8F8;
    line-height: 1.2;
}
.wbs-hero-stat span {
    font-size: 14px;
    color: rgba(248,248,248,.65);
}
 
/* buttony */
.wbs-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.wbs-hero-actions .btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 17px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: all .25s ease;
}
.wbs-hero-actions .btn-primary {
    background: linear-gradient(90deg, #168AB6, #2fd6b5);
    color: #0c1f20;
}
.wbs-hero-actions .btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}
.wbs-hero-actions .btn-ghost {
    background: rgba(248,248,248,.06);
    border: 1px solid rgba(248,248,248,.25);
    color: #F8F8F8;
}
.wbs-hero-actions .btn-ghost:hover {
    border-color: #B4FF9C;
    color: #B4FF9C;
}
 
/* prístupnosť — viditeľný focus + reduced motion */
.wbs-hero-actions .btn:focus-visible {
    outline: 2px solid #B4FF9C;
    outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
    .wbs-hero-actions .btn {
        transition: none;
    }
    .wbs-hero-actions .btn-primary:hover {
        transform: none;
    }
}
 
/* ===== Tablet — do 1024px ===== */
@media (max-width: 1024px) {
    .wbs-hero {
        padding: 50px 0 70px;
    }
    .wbs-hero-title {
        font-size: 42px;
    }
    .wbs-hero-stats {
        gap: 32px;
    }
    .wbs-hero-stat b {
        font-size: 22px;
    }
}
 
/* ===== Mobil — do 767px ===== */
@media (max-width: 767px) {
    .wbs-hero {
        padding: 30px 0 50px;
    }
    .wbs-hero-bg {
        object-position: 70% center;
    }
    .wbs-hero::before {
        background: linear-gradient(180deg, rgba(22,48,49,.95) 0%, rgba(22,48,49,.85) 100%);
    }
    .wbs-hero-title {
        font-size: 30px;
    }
    .wbs-hero-lead {
        font-size: 16px;
        margin-bottom: 28px;
    }
    .wbs-hero-stats {
        flex-wrap: wrap;
        gap: 20px 28px;
        margin-bottom: 30px;
    }
    .wbs-hero-stat b {
        font-size: 20px;
    }
    .wbs-hero-actions .btn {
        padding: 15px 24px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }
}
 
/* ============================================================
   WEBISION — CENNÍKOVÉ BALÍČKY (.wbs-pricing)
   Jediný NOVÝ komponent pre stránku Tvorba e-shopu na mieru.
   Hero, features, steps, FAQ a CTA používajú existujúce CSS
   zo stránky Tvorba webových stránok (webision-hero.css + svc).
   Pixion tokeny: #163031 / #168AB6 / #B4FF9C / Montserrat
   ============================================================ */

/* ===== Desktop (default) ===== */
.wbs-pricing {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    align-items: start;
    max-width: 880px;
    margin: 40px auto 16px;
}

.wbs-price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(248,248,248,.03);
    border: 1px solid rgba(248,248,248,.12);
    border-radius: 20px;
    padding: 32px 28px;
}
.wbs-price-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 4px;
}
.wbs-price-sub {
    font-size: 14px;
    opacity: .7;
    margin: 0 0 20px;
}
.wbs-price {
    margin: 0 0 24px;
}
.wbs-price b {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
}
.wbs-price span {
    display: block;
    font-size: 13px;
    opacity: .6;
    margin-top: 4px;
}
.wbs-price-card ul {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    flex-grow: 1;   /* buttony zarovnané na spodok kariet */
}
.wbs-price-card ul li {
    position: relative;
    padding: 8px 0 8px 26px;
    font-size: 14.5px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(248,248,248,.07);
}
.wbs-price-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #B4FF9C;
    font-weight: 700;
}
.wbs-price-card .btn {
    display: block;
    text-align: center;
}

/* zvýraznená stredná karta */
.wbs-price-card--featured {
    border-color: #2fd6b5;
    background: rgba(47,214,181,.06);
    box-shadow: 0 12px 40px rgba(47,214,181,.12);
}
.wbs-price-card--featured .wbs-price b {
    color: #2fd6b5;
}
.wbs-price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0c1f20;
    background: linear-gradient(90deg, #168AB6, #2fd6b5);
    padding: 6px 18px;
    border-radius: 30px;
    white-space: nowrap;
}

/* poznámka pod cenníkom */
.wbs-pricing-note {
    font-size: 13px;
    opacity: .6;
    text-align: center;
    margin: 0 0 8px;
}

/* ===== Tablet — do 1024px ===== */
@media (max-width: 1024px) {
    .wbs-pricing {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
    .wbs-price-card--featured {
        order: -1;   /* najpredávanejší balíček prvý */
    }
}

/* ===== Mobil — do 767px ===== */
@media (max-width: 767px) {
    .wbs-price-card {
        padding: 26px 20px;
    }
    .wbs-price b {
        font-size: 32px;
    }
    .wbs-price-card ul li {
        font-size: 14px;
    }
}

/* ============================================================
   FUNKCIE ESHOPU (.wbs-funkcie) — zoznam 32 funkcií v stĺpcoch
   ============================================================ */

/* ===== Desktop (default) ===== */
.wbs-funkcie ul {
    columns: 4;
    column-gap: 40px;
    list-style: none;
    margin: 28px 0 8px;
    padding: 0;
}
.wbs-funkcie ul li {
    position: relative;
    break-inside: avoid;
    padding: 7px 0 7px 28px;
    font-size: 15px;
    line-height: 1.5;
}
.wbs-funkcie ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 7px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #0c1f20;
    background: #B4FF9C;
    border-radius: 50%;
}

/* ===== Tablet — do 1024px ===== */
@media (max-width: 1024px) {
    .wbs-funkcie ul {
        columns: 2;
        column-gap: 32px;
    }
}

/* ===== Mobil — do 767px ===== */
@media (max-width: 767px) {
    .wbs-funkcie ul {
        columns: 1;
    }
    .wbs-funkcie ul li {
        font-size: 14.5px;
        border-bottom: 1px solid rgba(248,248,248,.06);
    }
}

/* ============================================================
   WEBISION — CENNÍK / PRICING ADD-ON
   Pridať do pixion-child a enqueue cez functions.php (filemtime()).
   Závisí na webision-design-system.css (--wbs-* tokeny, .btn .btn-primary).
   Všetko scoped pod .wbs, namespace .wbs-* → žiadne konflikty s Pixion/Elementor.
   ============================================================ */

/* --- mriežka balíkov --- */
.wbs .wbs-pricing{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.4rem;
  margin:1.6rem 0 .6rem;
}
@media (max-width:900px){
  .wbs .wbs-pricing{grid-template-columns:1fr;}
}

/* --- karta balíka --- */
.wbs .wbs-plan{
  position:relative;
  display:flex;
  flex-direction:column;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
  border-radius:20px;
  padding:1.9rem 1.6rem 1.6rem;
}
.wbs .wbs-plan.is-featured{
  border-color:var(--wbs-accent,#168AB6);
  box-shadow:0 0 0 1px var(--wbs-accent,#168AB6), 0 18px 40px -24px rgba(0,0,0,.6);
}

/* --- badge "najpopulárnejší" --- */
.wbs .wbs-plan-badge{
  position:absolute;
  top:-.85rem;left:50%;transform:translateX(-50%);
  background:var(--wbs-green,#B4FF9C);
  color:#0c1f20;
  font-size:.72rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;
  padding:.34rem .9rem;border-radius:30px;white-space:nowrap;
}

/* --- hlavička karty --- */
.wbs .wbs-plan-name{
  margin:0 0 .2rem;font-size:1.25rem;font-weight:700;
  color:var(--wbs-text,#f8f8f8);
}
.wbs .wbs-plan-sub{
  margin:0 0 1rem;font-size:.9rem;line-height:1.4;
  color:rgba(248,248,248,.68);
}

/* --- cena --- */
.wbs .wbs-plan-price{
  display:flex;align-items:baseline;gap:.45rem;flex-wrap:wrap;
  margin:.2rem 0 1.2rem;
}
.wbs .wbs-plan-price b{
  font-size:2.15rem;font-weight:700;line-height:1;
  color:var(--wbs-text,#f8f8f8);
}
.wbs .wbs-plan-price span{
  font-size:.85rem;color:rgba(248,248,248,.6);
}

/* --- zoznam funkcií --- */
.wbs .wbs-plan-features{
  list-style:none;margin:0 0 1.5rem;padding:0;
  display:flex;flex-direction:column;gap:.6rem;
  flex:1 1 auto;
}
.wbs .wbs-plan-features li{
  position:relative;padding-left:1.7rem;
  font-size:.92rem;line-height:1.45;
  color:rgba(248,248,248,.88);
}
.wbs .wbs-plan-features li::before{
  content:"✓";position:absolute;left:0;top:0;
  color:var(--wbs-green,#B4FF9C);font-weight:700;
}
.wbs .wbs-plan-features li strong{color:var(--wbs-text,#f8f8f8);font-weight:600;}

/* --- CTA v karte (prilepené dole, rovnaká výška kariet) --- */
.wbs .wbs-plan .btn{margin-top:auto;width:100%;text-align:center;justify-content:center;}

/* --- cenové riadky (menšie služby) --- */
.wbs .wbs-pricerows{
  display:flex;flex-direction:column;
  margin:1rem 0 .4rem;
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;overflow:hidden;
}
.wbs .wbs-pricerow{
  display:flex;justify-content:space-between;align-items:baseline;gap:1rem;
  padding:.95rem 1.2rem;
  background:rgba(255,255,255,.03);
  border-top:1px solid rgba(255,255,255,.06);
}
.wbs .wbs-pricerow:first-child{border-top:0;}
.wbs .wbs-pricerow b{font-weight:600;color:var(--wbs-text,#f8f8f8);}
.wbs .wbs-pricerow .amt{
  white-space:nowrap;font-weight:700;
  color:var(--wbs-green,#B4FF9C);
}

/* --- poznámka pod cenníkom --- */
.wbs .wbs-price-note{
  font-size:.9rem;line-height:1.55;color:rgba(248,248,248,.65);
  max-width:80ch;margin:.6rem 0 0;
}

/* ============================================================
   CENNÍK — full-page šírka
   Iba pre stránku cenníka (wrapper .wbs.wbs-cennik).
   Prebije max-width z .svc v design systéme, ostatné .wbs
   stránky ostávajú nedotknuté. Vyššia špecificita (.wbs.wbs-cennik)
   → vyhráva nad .wbs .svc bez ohľadu na poradie enqueue.
   ============================================================ */
.wbs.wbs-cennik .svc{
  max-width:1280px;      /* širšie využitie stránky; pre úplnú šírku daj: none */
  margin-inline:auto;    /* obsah na stred */
}
/* mriežky nech vyplnia celú šírku kontajnera (žiadny zdedený limit) */
.wbs.wbs-cennik .wbs-pricing,
.wbs.wbs-cennik .wbs-pricerows,
.wbs.wbs-cennik .features-grid{
  max-width:none;
  width:100%;
}
/* udrž 3 v rade na desktope/notebooku, kolaps až na mobile */
@media (min-width:761px){
  .wbs.wbs-cennik .wbs-pricing{grid-template-columns:repeat(3,1fr);}
}

.wbs .btn-ghost{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  padding:17px 30px;border-radius:30px;
  font-family:"Montserrat",sans-serif;font-weight:700;font-size:1rem;line-height:1;
  text-decoration:none;cursor:pointer;
  background:transparent;color:var(--wbs-text,#f8f8f8);
  border:1px solid rgba(255,255,255,.28);
  transition:border-color .18s ease,color .18s ease,background-color .18s ease;
}
.wbs .btn-ghost:hover,
.wbs .btn-ghost:focus-visible{
  border-color:var(--wbs-green,#B4FF9C);
  color:var(--wbs-green,#B4FF9C);
  background-color:rgba(180,255,156,.06);
}