/* ═══════════════════════════
   WEBDESIGN HERO
═══════════════════════════ */
@keyframes wd-hero-zoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.wd-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px var(--px) 80px;
  overflow: hidden;
  background: var(--bg);
}

/* Kein Hero-Bild – reines Schwarz */

/* ─── Text ───────────────── */
.wd-hero-text {
  position: relative; z-index: 2;
  max-width: 820px;
  margin-bottom: 64px;
}

.wd-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: var(--text); font-size: 0.78rem; font-weight: 600;
  padding: 5px 13px; border-radius: 100px; margin-bottom: 28px;
}
.wd-pill-dot {
  width: 5px; height: 5px; background: var(--text);
  border-radius: 50%; flex-shrink: 0;
  box-shadow: 0 0 6px rgba(255,255,255,0.6);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

.wd-hero h1 {
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--text);
  margin-bottom: 24px;
}
.wd-hero h1 .accent-outline {
  -webkit-text-stroke: 2.5px var(--text);
  color: transparent;
}


.wd-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 520px;
  margin: 0 auto 40px;
}

.wd-buttons {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap; align-items: center;
}

/* ─── Scroll Indicator ───────────────── */
.wd-scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  color: var(--muted); opacity: 0.45;
  animation: wdBounce 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes wdBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════
   LEISTUNGSUMFANG
═══════════════════════════ */
.wd-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.wd-features-title {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text);
  text-align: center;
}

#referenzen .section-header {
  text-align: center;
}

.wd-features-intro {
  max-width: 720px;
  margin: 3rem auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  text-align: justify;
}

.wd-word {
  display: inline-block;
  color: rgba(241,245,249,0.1);
  transition: color 0.55s cubic-bezier(0.16,1,0.3,1);
}
.wd-word:nth-child(1)  { transition-delay:   0ms; }
.wd-word:nth-child(2)  { transition-delay:  70ms; }
.wd-word:nth-child(3)  { transition-delay: 140ms; }
.wd-word:nth-child(4)  { transition-delay: 210ms; }
.wd-word:nth-child(5)  { transition-delay: 280ms; }
.wd-word:nth-child(6)  { transition-delay: 350ms; }
.wd-word:nth-child(7)  { transition-delay: 420ms; }
.wd-word:nth-child(8)  { transition-delay: 490ms; }
.wd-word:nth-child(9)  { transition-delay: 560ms; }
.wd-word:nth-child(10) { transition-delay: 630ms; }
.wd-word:nth-child(11) { transition-delay: 700ms; }
.wd-word:nth-child(12) { transition-delay: 770ms; }
.wd-word:nth-child(13) { transition-delay: 840ms; }
.wd-word:nth-child(14) { transition-delay: 910ms; }
.wd-word:nth-child(15) { transition-delay: 980ms; }
.wd-word:nth-child(16) { transition-delay: 1050ms; }
.wd-word:nth-child(17) { transition-delay: 1120ms; }
.wd-word:nth-child(18) { transition-delay: 1190ms; }
.wd-word:nth-child(19) { transition-delay: 1260ms; }
.wd-word:nth-child(20) { transition-delay: 1330ms; }
.wd-word:nth-child(21) { transition-delay: 1400ms; }
.wd-word:nth-child(22) { transition-delay: 1470ms; }
.wd-word:nth-child(23) { transition-delay: 1540ms; }
.wd-word:nth-child(24) { transition-delay: 1610ms; }
.wd-word:nth-child(25) { transition-delay: 1680ms; }
.wd-word--reset {
  transition: none !important;
}
.wd-word.wd-word--lit {
  color: var(--text);
}

@media (prefers-reduced-motion: reduce) {
  .wd-word { color: var(--text); transition: none; }
}

.wd-features-section {
  padding: 140px max(24px, calc((100% - 1200px) / 2));
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.wd-features-section .section-header {
  margin-bottom: 96px;
}

.wd-features-section .wd-features-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.wd-fc {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 48px 28px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: background 0.25s, border-color 0.25s;
}
.wd-fc:hover {
  background: var(--glass-bg-hi);
  border-color: var(--border-strong);
}

.wd-fc-title {
  font-size: 1.35rem; font-weight: 600;
  color: var(--text); line-height: 1.3;
  margin-bottom: 10px;
}

.wd-fc-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ═══════════════════════════
   PROZESS – vertikale Timeline
═══════════════════════════ */
.wd-process {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  --progress: 0;
  --marker-size: 22px;
  --marker-x: 11px;      /* half of marker-size */
  --line-stop: 96px;     /* Track endet dieses Stück vor dem letzten Marker */
}

/* Vertikale Track-Linie (Basis, gedimmt) */
.wd-process-track {
  position: absolute;
  left: calc(var(--marker-x) - 1px);
  top: calc(var(--marker-size) / 2);
  bottom: var(--line-stop);
  width: 2px;
  background: rgba(255,255,255,0.15);
  z-index: 0;
  pointer-events: none;
}

/* Wachsende weiße Progress-Linie */
.wd-process-progress {
  position: absolute;
  inset: 0;
  width: 100%;
  height: calc(100% * var(--progress));
  background: #ffffff;
  transition: height 0.12s linear;
}

.wd-step {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 28px;
  padding-bottom: 72px;
}
.wd-step:last-child { padding-bottom: 0; }

.wd-step-marker {
  width: var(--marker-size);
  height: var(--marker-size);
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #000000;
  position: relative;
  z-index: 2;
  margin-top: 4px;
}

.wd-step-kicker {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.wd-step-name {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.wd-step-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ═══════════════════════════
   REFERENZEN
═══════════════════════════ */
.wd-refs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}
.wd-ref-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 20px;
  border: none;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.wd-ref-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -12px rgba(0, 0, 0, 0.35);
}

.wd-ref-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.wd-ref-card:hover img {
  transform: scale(1.03);
}

.wd-ref-body {
  padding: 22px 26px 24px;
  background: #ffffff;
}
.wd-ref-title {
  display: block;
  font-family: var(--font-display, inherit);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 4px 0;
}
.wd-ref-kicker {
  display: block;
  font-size: 0.95rem;
  font-weight: 400;
  color: #6a7280;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 900px) {
  .wd-refs { gap: 16px; }
  .wd-ref-body { padding: 20px 22px 22px; }
}

@media (max-width: 640px) {
  .wd-refs { grid-template-columns: 1fr; }
  .wd-ref-card img { aspect-ratio: 16 / 11; }
}
.wd-ref-link:hover { gap: 10px; }

/* ═══════════════════════════
   FAQ – Tab-Layout
═══════════════════════════ */
.wd-faq-section {
  padding-top: 100px;
  padding-bottom: 140px;
}

.wd-faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.9fr;
  gap: 72px;
  max-width: 1200px;
  margin: 0 auto;
}

/* LEFT: Heading + Tabs */
.wd-faq-left { display: flex; flex-direction: column; }

.wd-faq-heading {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 48px;
}

.wd-faq-tabs {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wd-faq-tab {
  appearance: none;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  text-align: left;
  padding: 16px 22px;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  transition: background 0.2s, color 0.2s;
}
.wd-faq-tab:hover { color: var(--text); }
.wd-faq-tab.is-active {
  background: rgba(255,255,255,0.06);
  color: var(--text);
}

/* RIGHT: Panels */
.wd-faq-right { min-width: 0; }

.wd-faq-panel { display: none; }
.wd-faq-panel.is-active { display: block; }

.wd-faq-panel-label {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 20px;
}

.wd-faq-item {
  border-top: 1px solid var(--border);
}
.wd-faq-panel .wd-faq-item:last-of-type { border-bottom: 1px solid var(--border); }

.wd-faq-item summary {
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.wd-faq-item summary::-webkit-details-marker { display: none; }
.wd-faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  opacity: 0.75;
}
.wd-faq-item[open] summary::after {
  transform: rotate(-135deg);
}

.wd-faq-a {
  padding: 0 40px 22px 0;
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.75;
}
.wd-faq-a p {
  margin: 0 0 10px 0;
}
.wd-faq-a p:last-child { margin-bottom: 0; }
.wd-faq-a strong {
  color: var(--text);
  font-weight: 600;
}
.wd-faq-list {
  list-style: none;
  padding: 4px 0 6px 0;
  margin: 0;
}
.wd-faq-list li {
  position: relative;
  padding: 4px 0 4px 18px;
}
.wd-faq-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan, #00b2ff);
  opacity: 0.75;
}

/* Tablet & Mobile */
@media (max-width: 900px) {
  .wd-faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .wd-faq-heading { margin-bottom: 28px; }
  .wd-faq-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .wd-faq-tab {
    padding: 10px 16px;
    font-size: 0.88rem;
    border: 1px solid var(--glass-border);
  }
  .wd-faq-tab.is-active {
    background: #fff;
    color: #000;
    border-color: #fff;
  }
}

@media (max-width: 520px) {
  .wd-faq-a { padding-right: 0; }
}

/* ═══════════════════════════
   CTA
═══════════════════════════ */
.wd-cta-section {
  padding: 80px var(--px) 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

@media (min-width: 901px) {
  .wd-cta-section {
    padding-top: 180px;
    padding-bottom: 80px;
  }
}
.wd-cta-title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700; letter-spacing: -0.05em;
  line-height: 0.98;
  color: var(--text); margin-bottom: 28px;
  text-shadow: 0 0 60px rgba(255,255,255,0.14), 0 0 120px rgba(255,255,255,0.06);
}
.wd-cta-sub {
  font-size: 1.05rem; color: var(--muted-strong);
  max-width: 560px; margin: 0 auto 44px;
  line-height: 1.65;
  text-shadow: 0 0 30px rgba(255,255,255,0.06);
}

/* CTA-Avatar (Profilbild) */
.wd-cta-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 28px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.wd-cta-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CTA-Aktionen: Telefon + Nachricht nebeneinander */
.wd-cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.wd-cta-actions .btn-primary svg,
.wd-cta-actions .btn-ghost svg { flex-shrink: 0; }

.wd-cta-signature {
  font-size: 0.85rem;
  color: var(--muted, #64748b);
  letter-spacing: 0.01em;
  margin: 0;
  font-style: italic;
}

/* ═══════════════════════════
   REFERENZEN – kompakter Preview (nach Hero)
═══════════════════════════ */
.wd-refs-preview {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px var(--px) 40px;
  text-align: center;
}
.wd-refs-preview-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted, #64748b);
  margin: 0 0 24px 0;
}
.wd-refs-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.wd-refs-preview-card {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.wd-refs-preview-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: opacity 0.3s ease;
  opacity: 0.85;
}
.wd-refs-preview-name {
  display: block;
  padding: 12px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted-strong);
  text-align: left;
}
.wd-refs-preview-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
}
.wd-refs-preview-card:hover img { opacity: 1; }
.wd-refs-preview-card:hover .wd-refs-preview-name { color: var(--text); }

.wd-refs-preview-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted-strong);
  text-decoration: none;
  transition: gap 0.25s ease, color 0.25s ease;
}
.wd-refs-preview-link:hover {
  gap: 12px;
  color: var(--text);
}

@media (max-width: 640px) {
  .wd-refs-preview-grid { grid-template-columns: 1fr; }
  .wd-refs-preview { padding-top: 40px; }
}

/* ═══════════════════════════
   WAS SIE BEKOMMEN
═══════════════════════════ */
.wd-included {
  background: var(--bg);
}
.wd-included-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 40px;
}
.wd-included-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.wd-included-item svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--cyan, #00b2ff);
  margin-top: 4px;
}
.wd-included-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
}
.wd-included-item p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 720px) {
  .wd-included-list { grid-template-columns: 1fr; gap: 22px; }
}

/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */
@media (max-width: 900px) {
  .wd-hero { padding-top: 100px; padding-bottom: 72px; }
  .wd-hero-text { margin-bottom: 40px; }
  .wd-hero h1 { font-size: clamp(2.6rem, 11vw, 4.5rem); }
  .wd-sub { font-size: 1rem; }
  .wd-scroll { color: var(--text); opacity: 1; }
  .wd-scroll svg { width: 28px; height: 28px; }
  .wd-features-section .wd-features-grid { grid-template-columns: 1fr 1fr; }
  .wd-refs { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .wd-buttons { flex-direction: column; align-items: center; }
  .wd-buttons .btn-primary,
  .wd-buttons .btn-ghost { min-width: 220px; justify-content: center; }
  .wd-features-section .wd-features-grid { grid-template-columns: 1fr; }

  /* Accordion: Beschreibung standardmäßig ausgeblendet */
  .wd-fc { cursor: pointer; padding: 28px; justify-content: center; text-align: center; align-items: center; }
  .wd-fc-desc {
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    transition: max-height 0.35s cubic-bezier(0.16,1,0.3,1), margin-top 0.25s ease;
  }
  .wd-fc.open .wd-fc-desc {
    max-height: 200px;
    margin-top: 12px;
  }

  .wd-features-d-section { padding: 20px 0; }
  .wd-features-d { gap: 0; }
  .wd-fd { padding: 20px 8px; border: none; border-right: 1px solid rgba(0,0,0,0.08); }
  .wd-fd:nth-child(2n) { border-right: none; }
  .wd-fd:nth-last-child(-n+2) { border-bottom: none; }
  .wd-fd:nth-child(n+3) { padding-top: 12px; }
  .wd-fd-title { font-size: clamp(1.8rem, 9vw, 2.6rem); line-height: 1; }
  .wd-fd-title--large { font-size: clamp(1.2rem, 6vw, 2rem); }
}

@media (prefers-reduced-motion: reduce) {
  .wd-pill-dot { animation: none; }
  .wd-scroll    { animation: none; }
}

/* ═══════════════════════════
   TECHNIK-FEATURES OPTION D
═══════════════════════════ */
.wd-features-d-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.wd-features-d {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

.wd-fd {
  padding: 64px 40px;
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--border);
}
.wd-fd:last-child { border-right: none; }
.wd-fd-title {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 700;
  color: var(--text);
  text-align: center;
  line-height: 1.2;
}
.wd-fd-title--accent { color: var(--text); }
.wd-fd-title--large {
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  font-weight: 900;
}

@media (max-width: 900px) {
  .wd-features-d-section { padding: 32px 0; }
  .wd-features-d { grid-template-columns: 1fr 1fr; }
  .wd-fd { padding: 32px 40px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); min-width: 0; }
  .wd-fd:nth-child(2n) { border-right: none; }
  .wd-fd:nth-last-child(-n+2) { border-bottom: none; }
  .wd-fd-title { font-size: clamp(1rem, 3.5vw, 2rem); }
  .wd-fd-title--large { font-size: clamp(1.2rem, 4.5vw, 2.5rem); }
}

/* ═══════════════════════════
   BAUKASTEN VS. MAßARBEIT
═══════════════════════════ */
.wd-cmp--cards {
  padding: 72px 40px;
}

.wd-cmp-cards-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.wd-card-bad,
.wd-card-good {
  border-radius: 20px;
}

.wd-card-bad  { padding: 44px 32px; }
.wd-card-good { padding: 44px 44px 52px; }

.wd-card-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 24px;
}

.wd-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wd-card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.3;
}

.wd-card-list li svg { flex-shrink: 0; }

.section            { padding-top: 140px; padding-bottom: 140px; }
.wd-features-section { padding-bottom: 190px; }
#referenzen          { padding-top: 190px; }

.wd-cmp--cards { background: var(--bg); }

.wd-cmp-header {
  max-width: 860px;
  margin: 0 auto 48px;
  text-align: center;
  padding: 0 40px;
}

.wd-cmp-heading {
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.wd-cmp-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.92);
  font-weight: 400;
  line-height: 1.6;
}

.wd-cmp-footer {
  max-width: 860px;
  margin: 40px auto 0;
  padding: 0 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 640px) {
  .wd-cmp-header  { padding: 0 24px; margin-bottom: 36px; }
  .wd-cmp-footer  { padding: 0 24px; margin-top: 28px; }
}


.wd-card-bad {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.wd-card-bad .wd-card-label  { color: rgba(255,255,255,0.5); }
.wd-card-bad .wd-card-list li { color: rgba(255,255,255,0.55); font-weight: 400; }
.wd-card-bad .wd-card-list li svg { color: rgba(255,255,255,0.5); }

.wd-card-good {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: none;
  backdrop-filter: blur(18px) saturate(160%); -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow:
    0 8px 40px rgba(0,0,0,0.5),
    0 0 50px rgba(255,255,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -1px 0 rgba(255,255,255,0.06);
  transform: translateY(-8px);
  overflow: visible;
}
.wd-card-good::before,
.wd-card-good::after {
  content: '';
  position: absolute;
  left: -14%;
  right: -14%;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0) 10%,
    rgba(255,255,255,0.95) 50%,
    rgba(255,255,255,0) 90%,
    transparent 100%);
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.4));
}
.wd-card-good::before { top: 0; }
.wd-card-good::after  { bottom: 0; }
.wd-card-good .wd-card-label  { color: var(--text); font-size: 0.82rem; margin-bottom: 28px; }
.wd-card-good .wd-card-list   { gap: 20px; }
.wd-card-good .wd-card-list li { color: var(--text); font-weight: 500; font-size: 1.05rem; }
.wd-card-good .wd-card-list li svg { color: var(--text); width: 16px; height: 16px; }

@media (max-width: 640px) {
  .wd-cmp--cards { padding: 48px 24px; }
  .wd-cmp-cards-inner { grid-template-columns: 1fr; gap: 16px; }
}


