/* ============================================================
   WARSZTATY PAGE — Workshop landing
   ============================================================ */

.ws-header {
  padding: 48px 0 32px;
}

.ws-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.3);
  color: #4ade80;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.ws-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.ws-lead {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 640px;
}
.ws-lead strong { color: var(--text); }

.ws-hero-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 28px 0 22px;
}

.ws-hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
}

.ws-hero-card.highlight {
  background: linear-gradient(135deg, rgba(232,255,71,0.1), rgba(232,255,71,0.02));
  border-color: rgba(232,255,71,0.3);
}

.ws-hero-card.price {
  background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(255,107,53,0.02));
  border-color: rgba(255,107,53,0.3);
}

.ws-hero-card.price .ws-hero-card-num { color: var(--accent2); }
.ws-curr { font-size: 18px; color: var(--muted); }

.ws-hero-card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: 1px;
}

.ws-hero-card-lbl {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

.ws-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* ── PROGRESS ── */
.ws-progress-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 22px;
}

.ws-progress-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.ws-progress-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--text);
  letter-spacing: 1px;
  margin-top: 4px;
}

.ws-progress-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  color: var(--accent);
  line-height: 1;
}
.ws-progress-num span { font-size: 22px; color: var(--muted); }

.ws-progress-bar {
  width: 100%;
  height: 10px;
  background: rgba(255,255,255,0.05);
  border-radius: 5px;
  overflow: hidden;
}

.ws-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  border-radius: 5px;
  transition: width 0.8s ease;
}

.ws-progress-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 14px;
}

/* ── PRICE CARD ── */
.ws-price-card {
  background: linear-gradient(135deg, rgba(232,255,71,0.06), rgba(232,255,71,0.01));
  border: 1px solid rgba(232,255,71,0.28);
  border-radius: 18px;
  padding: 26px 24px;
  margin-top: 28px;
}

.ws-price-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.ws-price-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--text);
  line-height: 1;
}

.ws-price-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.5px;
}

.ws-price-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: 1px;
}
.ws-price-num span { font-size: 24px; color: var(--muted); }

.ws-price-divider {
  height: 1px;
  background: rgba(232,255,71,0.15);
  margin: 22px 0 18px;
}

.ws-price-incl-title {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}

.ws-price-incl {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.ws-price-incl li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
}

.ws-price-incl li span {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1;
}

.ws-price-incl li strong { color: var(--text); }

.ws-price-foot {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 18px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
}

.ws-price-foot strong { color: var(--text); }

/* ── PLAN NOTE ── */
.ws-plan-note {
  margin-top: 18px;
  background: rgba(78,205,196,0.06);
  border: 1px solid rgba(78,205,196,0.22);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.ws-plan-note strong { color: var(--text); }

.ws-plan-note-icon {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1.4;
}

/* ── DLA KOGO ── */
.ws-target-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
}

.ws-target-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 20px;
  transition: border-color 0.2s, transform 0.2s;
}

.ws-target-card:hover {
  border-color: rgba(232,255,71,0.22);
  transform: translateY(-3px);
}

.ws-target-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.ws-target-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.ws-target-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── SAFETY BOX ── */
.ws-safety-box {
  background: linear-gradient(135deg, rgba(255,107,53,0.08), rgba(255,107,53,0.02));
  border: 1px solid rgba(255,107,53,0.25);
  border-radius: 18px;
  padding: 26px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  flex-direction: column;
}

.ws-safety-icon {
  font-size: 42px;
  line-height: 1;
}

.ws-safety-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 1px;
  color: var(--text);
  margin: 6px 0 10px;
  line-height: 1.05;
}

.ws-safety-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.ws-safety-body p strong { color: var(--accent2); }

/* ── PLAN ── */
.ws-plan {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

.ws-plan-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  position: relative;
  transition: border-color 0.2s;
}

.ws-plan-item:hover { border-color: rgba(255,255,255,0.12); }

.ws-plan-item.highlight {
  background: linear-gradient(135deg, rgba(232,255,71,0.06), rgba(232,255,71,0.01));
  border-color: rgba(232,255,71,0.3);
}

.ws-plan-time {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--accent);
  flex-shrink: 0;
}

.ws-plan-item.highlight .ws-plan-time { color: var(--accent2); }

.ws-plan-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.ws-plan-tag {
  display: inline-block;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px;
}

.ws-plan-tag.highlight {
  background: rgba(255,107,53,0.12);
  border-color: rgba(255,107,53,0.3);
  color: var(--accent2);
}

.ws-plan-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ws-plan-body ul li {
  font-size: 13px;
  color: #999;
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}

.ws-plan-body ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--muted);
}

.ws-plan-item.highlight .ws-plan-body ul li::before { color: var(--accent2); }

.ws-plan-body ul li strong { color: var(--text); }

/* ── BENEFITS ── */
.ws-benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 28px;
}

.ws-benefit {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.ws-benefit span {
  font-size: 18px;
  flex-shrink: 0;
}

.ws-benefit strong { color: var(--text); }

/* ── FORM ── */
.ws-form-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 8px;
}

.ws-form-side {}

.ws-form-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.ws-form-desc strong { color: var(--text); }

.ws-form-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 8px;
}

.ws-form-bullets li {
  font-size: 13px;
  color: #aaa;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
}

.ws-form-card {
  background: #161616;
  border: 1px solid #272727;
  border-radius: 20px;
  padding: 32px 26px;
  position: relative;
}

/* ── FAQ shared from uslugi-style ── */
.faq-list { display: flex; flex-direction: column; gap: 8px; margin-top: 28px; }

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open { border-color: rgba(232,255,71,0.22); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 0.15s;
}
.faq-question:hover { color: var(--accent); }

.faq-icon {
  font-size: 20px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.25s, color 0.15s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--accent); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 20px 18px; }

.faq-answer p {
  font-size: 13px;
  color: #999;
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* ── STICKY WA (also for warsztaty page) ── */
.sticky-wa {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 900;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s, padding 0.3s;
  overflow: hidden;
}
.sticky-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}
.sticky-wa-label {
  white-space: nowrap;
  transition: opacity 0.3s, max-width 0.3s;
  max-width: 200px;
  opacity: 1;
}
.sticky-wa.collapsed {
  padding: 14px;
  border-radius: 50%;
}
.sticky-wa.collapsed .sticky-wa-label {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
}

/* ── pulse dot reuse ── */
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.4); }
  50%       { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}

/* ── DESKTOP ── */
@media (min-width: 768px) {
  .ws-header { padding: 64px 0 40px; }

  .ws-hero-cards {
    grid-template-columns: repeat(4, 1fr);
    max-width: 720px;
  }

  .ws-price-incl { grid-template-columns: 1fr 1fr; }

  .ws-target-grid { grid-template-columns: 1fr 1fr; }

  .ws-safety-box {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 32px 36px;
  }
  .ws-safety-icon { font-size: 56px; }
  .ws-safety-title { font-size: 36px; }

  .ws-plan-item {
    grid-template-columns: 160px 1fr;
    align-items: start;
    padding: 22px 26px;
  }

  .ws-benefit-grid { grid-template-columns: 1fr 1fr; }

  .ws-form-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
  }
}
