.wf-examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.wf-examples-grid .case-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wf-examples-grid .case-card h4 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.wf-examples-grid .case-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  flex: 1;
}

.wf-example-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wf-example-tags span {
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 14px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.wf-cases-cta-row {
  margin-top: 36px;
  display: flex;
  justify-content: flex-start;
}

.wf-cases-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 10px;
  background: var(--bg-card);
  color: var(--text) !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.wf-cases-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 10px;
  background: linear-gradient(135deg, #FFE500, #FF6B00, #7B2FFF, #00D4FF, #FFE500);
  background-size: 300% 300%;
  animation: navCasesGradient 3s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.wf-cases-btn:hover {
  transform: translateY(-1px);
  background: var(--hover-bg);
}

.wf-cases-btn span {
  transition: transform 0.2s ease;
}

.wf-cases-btn:hover span {
  transform: translateX(4px);
}

.wf-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px auto 0;
  max-width: 860px;
}

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

.wf-faq-item[open] {
  border-color: rgba(255, 107, 0, 0.35);
}

.wf-faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1.02rem;
  list-style: none;
  position: relative;
  padding-right: 56px;
}

.wf-faq-item summary::-webkit-details-marker {
  display: none;
}

.wf-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--orange);
  transition: transform 0.25s ease;
  line-height: 1;
}

.wf-faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.wf-faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.wf-cta-final {
  text-align: center;
  padding-top: 48px;
  padding-bottom: 60px;
}

.wf-cta-final .section-title,
.wf-cta-final .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.wf-cta-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
}

.wf-cta-actions .price-btn {
  margin: 0;
}

@media (max-width: 720px) {
.wf-faq-item summary {
    padding: 16px 20px;
    padding-right: 48px;
    font-size: 0.96rem;
  }

.wf-faq-item p {
    padding: 0 20px 18px;
    font-size: 0.9rem;
  }

.wf-examples-grid .case-card {
    padding: 22px;
  }
}

/* Stat cards — big metric + caption (e.g. "где теряют трафик") */
.wf-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.wf-stat {
  padding: 28px 26px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.wf-stat:hover {
  border-color: var(--card-hover-border);
  transform: translateY(-2px);
}

.wf-stat-num {
  font-family: var(--font-unbounded), sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 12px;
  width: fit-content;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wf-stat-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.wf-guide-block {
  margin-bottom: 36px;
}

.wf-guide-block:last-child {
  margin-bottom: 0;
}

.wf-guide-block h3 {
  margin-bottom: 16px;
}

.wf-guide-block p:last-child {
  margin-bottom: 0;
}

.wf-checklist {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 920px;
}

.wf-checklist li {
  position: relative;
  padding: 16px 20px 16px 56px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.55;
}

.wf-checklist li::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  width: 22px;
  height: 22px;
  margin-top: -11px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
}

.wf-checklist li::after {
  content: '';
  position: absolute;
  left: 26px;
  top: 50%;
  width: 10px;
  height: 5px;
  margin-top: -4px;
  border-left: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  transform: rotate(-45deg);
}

.wf-mistakes {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}

.wf-mistake {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: transparent;
}

.wf-mistake-bad,
.wf-mistake-good {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wf-mistake-bad {
  background: rgba(239, 68, 68, 0.06);
  border-right: 1px solid var(--border);
}

.wf-mistake-good {
  background: rgba(34, 197, 94, 0.05);
}

.wf-mistake p {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
  font-size: 0.95rem;
}

.wf-mistake-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 14px;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.12);
  align-self: flex-start;
}

.wf-mistake-tag-good {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
}

.wf-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.wf-tool {
  padding: 22px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.wf-tool:hover {
  border-color: var(--card-hover-border);
  transform: translateY(-2px);
}

.wf-tool h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.wf-tool h4 a {
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}

.wf-tool h4 a:hover {
  border-bottom-color: var(--orange);
}

.wf-tool p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

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

.wf-mistake-bad {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

.wf-checklist li {
    padding-left: 50px;
  }
}
