/* ============================================================
   ODZYSKIWANIE DANYCH — Data recovery landing
   Palette accent: cyan/red (data urgency)
   ============================================================ */

/* ── Breadcrumb strip ── */
.breadcrumb-strip {
  padding: 12px 0 0;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
}
.breadcrumb-nav a { color: var(--muted); text-decoration: none; transition: color 0.15s; }
.breadcrumb-nav a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--border); }
.breadcrumb-current { color: var(--text); font-weight: 500; }

/* ── HERO ── */
.od-hero {
  padding: 40px 0 40px;
  position: relative;
  overflow: hidden;
}

.od-hero-content { max-width: 720px; position: relative; z-index: 1; }

.od-hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 7px 14px;
  background: rgba(232,255,71,0.08);
  border: 1px solid rgba(232,255,71,0.25);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text);
}
.od-hero-stars {
  font-size: 18px;
  letter-spacing: 2px;
  color: #ffd633;
  filter: drop-shadow(0 0 6px rgba(255,214,51,0.5));
}
.od-hero-trust strong { color: var(--accent); }
.od-hero-trust a { color: var(--muted); text-decoration: none; border-bottom: 1px dotted var(--muted); }
.od-hero-trust a:hover { color: var(--accent); border-color: var(--accent); }

.od-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(58px, 14vw, 108px);
  line-height: 0.88;
  letter-spacing: 2px;
  color: var(--text);
  margin: 4px 0 20px;
}
.od-hero-title span { color: var(--accent); }

.od-hero-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.od-hero-sub strong { color: var(--text); }

.od-hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

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

.od-hero-card.highlight {
  background: linear-gradient(135deg, rgba(74,222,128,0.1), rgba(74,222,128,0.02));
  border-color: rgba(74,222,128,0.35);
}

.od-hero-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 1px;
  color: var(--accent);
}
.od-hero-num i {
  font-style: normal;
  font-size: 16px;
  color: var(--muted);
}
.od-hero-card.highlight .od-hero-num { color: #4ade80; }

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

.od-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── URGENT WARNING ── */
.od-urgent {
  background: linear-gradient(135deg, rgba(255,60,60,0.08), rgba(255,60,60,0.02));
  border: 1px solid rgba(255,60,60,0.3);
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.od-urgent-icon { font-size: 32px; flex-shrink: 0; line-height: 1; }
.od-urgent-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: #ff8080;
  letter-spacing: 1px;
  margin-bottom: 6px;
  line-height: 1.1;
}
.od-urgent p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.od-urgent strong { color: var(--text); }

/* ── CASES ── */
.od-cases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
}

.od-case {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 20px;
  transition: transform 0.2s, border-color 0.2s;
}
.od-case:hover {
  transform: translateY(-3px);
  border-color: rgba(232,255,71,0.22);
}
.od-case-icon { font-size: 28px; line-height: 1; margin-bottom: 12px; }
.od-case-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.od-case p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── PRICING ── */
.od-price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 28px;
}

.od-price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.od-price-card:hover { transform: translateY(-4px); }

.od-price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #555;
}
.od-price-card.featured::before { background: var(--accent); }
.od-price-card.advanced::before { background: #ff3c3c; }
.od-price-card.featured { background: #181a10; border-color: rgba(232,255,71,0.25); }
.od-price-card.advanced { background: #180e0e; border-color: rgba(255,60,60,0.25); }

.od-price-tag {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.od-price-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.od-price-target {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 16px;
  min-height: 34px;
}
.od-price-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 46px;
  line-height: 1;
  color: var(--text);
}
.od-price-value span { font-size: 22px; color: var(--muted); }
.od-price-range { font-size: 11px; color: var(--muted); margin-top: 4px; letter-spacing: 0.5px; }
.od-price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.od-price-features li {
  font-size: 12px;
  color: #999;
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.od-price-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--muted);
}
.od-price-card.featured .od-price-features li::before { color: var(--accent); }
.od-price-card.advanced .od-price-features li::before { color: #ff5555; }

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

/* ── PROCESS ── */
.od-process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
}
.od-step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: border-color 0.2s, transform 0.2s;
}
.od-step:hover { border-color: rgba(232,255,71,0.22); transform: translateY(-3px); }
.od-step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: 1px;
  flex-shrink: 0;
  opacity: 0.75;
}
.od-step-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.od-step-body p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.od-step-body p strong { color: var(--text); }

/* ── TESTIMONIAL ── */
.od-testimonial {
  background: linear-gradient(135deg, rgba(255,107,53,0.06), rgba(255,107,53,0.01));
  border: 1px solid rgba(255,107,53,0.28);
  border-radius: 18px;
  padding: 28px 26px;
}
.od-testi-stars {
  font-size: 20px;
  letter-spacing: 3px;
  color: #ffd633;
  margin-bottom: 12px;
}
.od-testi-text {
  font-size: 15px;
  color: #ddd;
  line-height: 1.75;
  margin-bottom: 18px;
  font-style: italic;
}
.od-testi-text strong { color: var(--text); font-style: normal; }
.od-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.od-testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}
.od-testi-name { font-size: 14px; font-weight: 600; color: var(--text); }
.od-testi-meta { font-size: 11px; color: var(--muted); margin-top: 2px; }
.od-testi-meta a { color: var(--muted); }
.od-testi-meta a:hover { color: var(--accent); }

/* ── FORM ── */
.od-form-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 8px;
}
.od-form-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.od-form-desc strong { color: var(--text); }
.od-form-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.od-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;
}
.od-form-card {
  background: #161616;
  border: 1px solid #272727;
  border-radius: 20px;
  padding: 32px 26px;
  position: relative;
}

/* ── FAQ shared ── */
.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: 500px; 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;
}
.faq-answer p strong { color: var(--text); }

/* ── STICKY WA ── */
.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; }

/* WhatsApp button variant used in hero */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-whatsapp:hover { opacity: 0.9; transform: translateY(-2px); }

/* ── DESKTOP ── */
@media (min-width: 768px) {
  .od-hero { padding: 60px 0 60px; }
  .od-hero-cards { max-width: 620px; }
  .od-hero-num { font-size: 34px; }
  .od-urgent { padding: 26px 30px; align-items: center; }
  .od-urgent-icon { font-size: 40px; }
  .od-urgent-title { font-size: 26px; }
  .od-cases { grid-template-columns: 1fr 1fr; }
  .od-price-grid { grid-template-columns: repeat(3, 1fr); }
  .od-process { grid-template-columns: 1fr 1fr; }
  .od-form-wrap { grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
}
