/* =============================================================================
   Watkostdeklus Form — Premium Frontend CSS v3
   Elke button heeft zijn eigen volledige stijldefinitie met alle benodigde
   properties om browser defaults te overrulen zonder globale resets.
   ============================================================================= */

/* ---- CSS Custom Properties ---- */
:root {
  --wkdk-primary:    #2563eb;
  --wkdk-accent:     #16a34a;
  --wkdk-secondary:  #0f172a;
  --wkdk-border:     #e2e8f0;
  --wkdk-text:       #0f172a;
  --wkdk-text-muted: #64748b;
  --wkdk-text-light: #94a3b8;
  --wkdk-bg:         #ffffff;
  --wkdk-bg-soft:    #f8fafc;
  --wkdk-radius:     12px;
  --wkdk-radius-sm:  8px;
  --wkdk-radius-lg:  20px;
}

/* ============================================================
   WRAPPER & BOX-SIZING
   ============================================================ */
.wkdk-form-wrap {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--wkdk-text);
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

.wkdk-form-wrap *,
.wkdk-form-wrap *::before,
.wkdk-form-wrap *::after {
  box-sizing: border-box;
}

.wkdk-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* ============================================================
   PROGRESS BAR
   ============================================================ */
.wkdk-progress-wrap { margin-bottom: 28px; }

.wkdk-progress-bar {
  height: 6px;
  background: #e2e8f0;
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 8px;
}

.wkdk-progress-fill {
  height: 100%;
  background: var(--wkdk-primary);
  border-radius: 99px;
  transition: width .5s ease;
}

.wkdk-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--wkdk-text-muted);
  font-weight: 500;
}

/* ============================================================
   STEP HEADER
   ============================================================ */
.wkdk-step-header { margin-bottom: 28px; }

.wkdk-step-title {
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 700;
  color: var(--wkdk-secondary);
  margin: 0 0 8px;
  line-height: 1.25;
}

.wkdk-step-subtitle {
  font-size: 16px;
  color: var(--wkdk-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   SERVICE GRID
   ============================================================ */
.wkdk-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .wkdk-service-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Service card button — fully specified to override ALL browser defaults */
.wkdk-service-card {
  -webkit-appearance: none !important;
  appearance: none !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  width: 100%;
  padding: 20px 16px;
  background-color: #ffffff !important;
  border: 2px solid #e2e8f0 !important;
  border-radius: var(--wkdk-radius);
  box-shadow: 0 1px 4px rgba(0,0,0,.07);
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.wkdk-service-card:hover {
  background-color: #eff6ff !important;
  border-color: #2563eb !important;
  box-shadow: 0 4px 16px rgba(37,99,235,.14);
  transform: translateY(-2px);
}

.wkdk-service-card.wkdk-service-card--selected {
  background-color: #eff6ff !important;
  border-color: #2563eb !important;
  box-shadow: 0 0 0 3px rgba(37,99,235,.15) !important;
  transform: translateY(0);
}

.wkdk-service-card.wkdk-service-card--selected .wkdk-service-title {
  color: #2563eb;
}

.wkdk-service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--wkdk-radius-sm);
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  flex-shrink: 0;
}

.wkdk-service-card.wkdk-service-card--selected .wkdk-service-icon {
  background: rgba(37,99,235,.12);
}

.wkdk-service-icon svg { width: 26px; height: 26px; }

.wkdk-service-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--wkdk-secondary);
  line-height: 1.3;
}

.wkdk-service-subtitle {
  font-size: 12px;
  color: var(--wkdk-text-muted);
  line-height: 1.4;
}

/* ============================================================
   MORE SERVICES
   ============================================================ */
.wkdk-more-services-wrap { margin-top: 8px; }

.wkdk-more-services-toggle {
  -webkit-appearance: none !important;
  appearance: none !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background-color: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: var(--wkdk-radius-sm);
  color: #2563eb;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease;
}

.wkdk-more-services-toggle:hover {
  background-color: #eff6ff !important;
  border-color: #2563eb !important;
}

.wkdk-more-services-panel {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--wkdk-radius);
  padding: 16px;
  margin-top: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}

.wkdk-service-search {
  width: 100%;
  padding: 10px 14px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--wkdk-radius-sm);
  font-family: inherit;
  font-size: 14px;
  color: var(--wkdk-text);
  margin-bottom: 12px;
  outline: none;
  transition: border-color .15s ease;
}

.wkdk-service-search:focus { border-color: #2563eb; }

.wkdk-all-services-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 280px;
  overflow-y: auto;
}

.wkdk-service-list-item {
  -webkit-appearance: none !important;
  appearance: none !important;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  background-color: transparent !important;
  border: none !important;
  border-radius: var(--wkdk-radius-sm);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--wkdk-text);
  cursor: pointer;
  text-align: left;
  transition: background-color .15s ease;
}

.wkdk-service-list-item:hover { background-color: #f8fafc !important; }

/* ============================================================
   ANSWER CARDS
   ============================================================ */
.wkdk-field-block { margin-bottom: 28px; }

.wkdk-field-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--wkdk-secondary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wkdk-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 560px) {
  .wkdk-cards-grid--4 { grid-template-columns: repeat(4, 1fr); }
  .wkdk-cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* Answer card button — fully explicit */
.wkdk-answer-card {
  -webkit-appearance: none !important;
  appearance: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  background-color: #ffffff !important;
  border: 2px solid #e2e8f0 !important;
  border-radius: var(--wkdk-radius);
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  text-align: center;
  line-height: 1.35;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.wkdk-answer-card:hover {
  background-color: #eff6ff !important;
  border-color: #2563eb !important;
  color: #0f172a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,99,235,.12);
}

.wkdk-answer-card.wkdk-answer-card--selected {
  background-color: #eff6ff !important;
  border-color: #2563eb !important;
  color: #0f172a;
  box-shadow: 0 0 0 3px rgba(37,99,235,.15) !important;
  transform: translateY(0);
}

/* ============================================================
   POSTCODE ROW
   ============================================================ */
.wkdk-postcode-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 10px;
}

@media (max-width: 560px) {
  .wkdk-postcode-row { grid-template-columns: 1fr 1fr; }
  .wkdk-postcode-row > div:last-child { grid-column: 1 / -1; }
}

.wkdk-input-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--wkdk-text-muted);
  margin-bottom: 6px;
}

.wkdk-text-input {
  display: block;
  width: 100%;
  padding: 12px 14px;
  background-color: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--wkdk-radius-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--wkdk-text);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.wkdk-text-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}

.wkdk-text-input.wkdk-input-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}

.wkdk-address-result {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background-color: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--wkdk-radius-sm);
  font-size: 14px;
  color: var(--wkdk-text-muted);
  margin-top: 4px;
  min-height: 44px;
}

.wkdk-address-result.wkdk-address-found {
  background-color: #f0fdf4;
  border-color: #16a34a;
  color: var(--wkdk-text);
}

.wkdk-address-result svg { color: #16a34a; flex-shrink: 0; }

/* ============================================================
   NAV BUTTONS
   ============================================================ */
.wkdk-step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  gap: 12px;
}

.wkdk-btn-primary {
  -webkit-appearance: none !important;
  appearance: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background-color: #2563eb !important;
  border: 2px solid #2563eb !important;
  border-radius: var(--wkdk-radius);
  color: #ffffff !important;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(37,99,235,.28);
  transition: background-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.wkdk-btn-primary:hover {
  background-color: #1d4ed8 !important;
  border-color: #1d4ed8 !important;
  box-shadow: 0 6px 20px rgba(37,99,235,.38);
  transform: translateY(-1px);
}

.wkdk-btn-primary:active { transform: translateY(0); }
.wkdk-btn-primary:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.wkdk-btn-next { margin-left: auto; }

.wkdk-btn-back {
  -webkit-appearance: none !important;
  appearance: none !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 20px;
  background-color: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: var(--wkdk-radius);
  color: #64748b !important;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.wkdk-btn-back:hover {
  background-color: #f8fafc !important;
  border-color: #94a3b8 !important;
  color: #0f172a !important;
}

/* ============================================================
   CALCULATING SCREEN
   ============================================================ */
.wkdk-calculating-wrap {
  text-align: center;
  padding: 60px 20px;
}

.wkdk-calculating-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  color: #2563eb;
}

.wkdk-pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid #2563eb;
  opacity: 0;
  animation: wkdk-pulse 2s ease-out infinite;
}

@keyframes wkdk-pulse {
  0%   { transform: scale(.9); opacity: .7; }
  100% { transform: scale(1.5); opacity: 0; }
}

.wkdk-calculating-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--wkdk-secondary);
  margin: 0 0 8px;
}

.wkdk-calculating-sub {
  font-size: 16px;
  color: var(--wkdk-text-muted);
  margin: 0 0 28px;
}

.wkdk-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.wkdk-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2563eb;
  animation: wkdk-bounce 1.4s ease-in-out infinite both;
}

.wkdk-dots span:nth-child(1) { animation-delay: 0s; }
.wkdk-dots span:nth-child(2) { animation-delay: .16s; }
.wkdk-dots span:nth-child(3) { animation-delay: .32s; }

@keyframes wkdk-bounce {
  0%, 80%, 100% { transform: scale(.7); opacity: .5; }
  40%            { transform: scale(1.1); opacity: 1; }
}

/* ============================================================
   RESULT CARD — Groen voor vertrouwen + positief gevoel
   ============================================================ */
.wkdk-result-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wkdk-result-card {
  background: linear-gradient(135deg, #14532d 0%, #15803d 100%);
  border-radius: var(--wkdk-radius-lg);
  padding: 36px 32px 28px;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 10px 40px rgba(22,101,52,.22), 0 4px 12px rgba(22,101,52,.14);
  animation: wkdk-fadein .4s ease;
}

@keyframes wkdk-fadein {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.wkdk-result-header { margin-bottom: 20px; }

.wkdk-result-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.18);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.95);
  margin-bottom: 16px;
}

.wkdk-result-price {
  font-size: clamp(36px, 8vw, 52px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 10px;
}

.wkdk-price-from {
  font-size: .5em;
  vertical-align: super;
  font-weight: 700;
  opacity: .85;
}

.wkdk-price-sep {
  font-size: .4em;
  opacity: .5;
  margin: 0 6px;
}

.wkdk-result-sub {
  font-size: 14px;
  opacity: .75;
  margin: 0 0 10px;
}

.wkdk-result-extra {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  background: rgba(255,255,255,.15);
  border-radius: var(--wkdk-radius-sm);
  padding: 8px 16px;
  margin: 0;
}

.wkdk-result-cta-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border-radius: var(--wkdk-radius);
  padding: 13px 16px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 8px;
  border: 1px solid rgba(255,255,255,.12);
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.wkdk-contact-form {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--wkdk-radius-lg);
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,.07);
}

@media (max-width: 520px) { .wkdk-contact-form { padding: 20px 16px; } }

.wkdk-contact-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--wkdk-secondary);
  margin: 0 0 6px;
}

.wkdk-contact-sub {
  font-size: 15px;
  color: var(--wkdk-text-muted);
  margin: 0 0 24px;
}

.wkdk-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 480px) { .wkdk-field-row { grid-template-columns: 1fr; } }

.wkdk-field-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.wkdk-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--wkdk-text);
  margin-bottom: 6px;
}

.wkdk-required { color: #ef4444; }
.wkdk-optional { color: var(--wkdk-text-light); font-weight: 400; font-size: 12px; }

.wkdk-input {
  display: block;
  width: 100%;
  padding: 13px 16px;
  background-color: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--wkdk-radius-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--wkdk-text);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.wkdk-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}

.wkdk-input.wkdk-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}

.wkdk-textarea { resize: vertical; min-height: 80px; }

.wkdk-field-error {
  display: block;
  font-size: 12px;
  color: #ef4444;
  font-weight: 500;
  margin-top: 5px;
  min-height: 16px;
}

/* ============================================================
   TRUST BADGES
   ============================================================ */
.wkdk-trust-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.wkdk-trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--wkdk-text-muted);
  font-weight: 500;
}

.wkdk-trust-badge svg { color: #16a34a; flex-shrink: 0; }

/* ============================================================
   SUBMIT BUTTON
   ============================================================ */
.wkdk-btn-submit {
  -webkit-appearance: none !important;
  appearance: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 18px 28px;
  background-color: #2563eb !important;
  border: 2px solid #2563eb !important;
  border-radius: var(--wkdk-radius);
  color: #ffffff !important;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .01em;
  box-shadow: 0 4px 14px rgba(37,99,235,.28);
  transition: background-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.wkdk-btn-submit:hover {
  background-color: #1d4ed8 !important;
  border-color: #1d4ed8 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,.38);
}

.wkdk-btn-submit:active { transform: translateY(0); }
.wkdk-btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.wkdk-submit-error {
  color: #ef4444;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin-top: 12px;
}

.wkdk-privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 12px;
  color: var(--wkdk-text-light);
  text-align: center;
  margin-top: 12px;
}

/* ============================================================
   SPINNER
   ============================================================ */
@keyframes wkdk-spin { to { transform: rotate(360deg); } }
.wkdk-spin { animation: wkdk-spin .8s linear infinite; }

/* ============================================================
   THANK YOU
   ============================================================ */
.wkdk-thankyou-wrap {
  text-align: center;
  padding: 40px 20px;
  animation: wkdk-fadein .4s ease;
}

.wkdk-thankyou-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #16a34a;
}

.wkdk-thankyou-title {
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 800;
  color: var(--wkdk-secondary);
  margin: 0 0 12px;
}

.wkdk-thankyou-sub {
  font-size: 16px;
  color: var(--wkdk-text-muted);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.wkdk-thankyou-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  max-width: 440px;
  margin: 0 auto;
}

.wkdk-thankyou-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f8fafc;
  border-radius: var(--wkdk-radius);
  padding: 16px 20px;
}

.wkdk-ty-step-nr {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wkdk-thankyou-step strong { font-size: 15px; color: var(--wkdk-secondary); display: block; margin-bottom: 4px; }
.wkdk-thankyou-step p { font-size: 14px; color: var(--wkdk-text-muted); margin: 0; }

/* ============================================================
   RESUME BANNER
   ============================================================ */
.wkdk-resume-banner {
  background: #eff6ff;
  border: 1.5px solid rgba(37,99,235,.25);
  border-radius: var(--wkdk-radius);
  margin-bottom: 20px;
  animation: wkdk-fadein .3s ease;
}

.wkdk-resume-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  flex-wrap: wrap;
  color: #2563eb;
  font-size: 14px;
  font-weight: 500;
}

.wkdk-resume-btns { display: flex; gap: 8px; margin-left: auto; }

.wkdk-btn-resume-yes {
  -webkit-appearance: none !important;
  appearance: none !important;
  padding: 8px 16px;
  background-color: #2563eb !important;
  border: 2px solid #2563eb !important;
  border-radius: var(--wkdk-radius-sm);
  color: #ffffff !important;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color .15s ease;
}

.wkdk-btn-resume-yes:hover { background-color: #1d4ed8 !important; border-color: #1d4ed8 !important; }

.wkdk-btn-resume-no {
  -webkit-appearance: none !important;
  appearance: none !important;
  padding: 7px 14px;
  background-color: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: var(--wkdk-radius-sm);
  color: #64748b !important;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .15s ease, color .15s ease;
}

.wkdk-btn-resume-no:hover { border-color: #94a3b8 !important; color: #0f172a !important; }

/* ============================================================
   TOOLTIP
   ============================================================ */
.wkdk-tooltip-trigger {
  -webkit-appearance: none !important;
  appearance: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #e2e8f0 !important;
  border: none !important;
  color: #64748b;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color .15s ease, color .15s ease;
}

.wkdk-tooltip-trigger:hover { background-color: #eff6ff !important; color: #2563eb; }

.wkdk-tooltip-bubble {
  position: fixed;
  background: #0f172a;
  color: #ffffff;
  border-radius: var(--wkdk-radius-sm);
  padding: 8px 14px;
  font-size: 13px;
  max-width: 240px;
  z-index: 99999;
  line-height: 1.5;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  pointer-events: none;
}

/* ============================================================
   TRANSITIONS
   ============================================================ */
.wkdk-step-enter { animation: wkdk-fadein .3s ease forwards; }
