@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&family=Playfair+Display:ital,wght@1,400;1,500;1,600;1,700&display=swap');

/* OVERLAY */
.wdb-sm-overlay {
  position: fixed; inset: 0; background: #050508; z-index: 99999999;
  display: none; align-items: flex-start; justify-content: center;
  overflow-y: auto; overflow-x: hidden; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; -ms-overflow-style: none;
}
.wdb-sm-overlay::-webkit-scrollbar { display: none; }
.wdb-sm-overlay.wdb-sm-active { display: flex; }

/* Body scroll lock when modal is open */
body.wdb-sm-body-locked {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
  top: var(--wdb-sm-scroll-y, 0) !important;
}
.wdb-sm-overlay::before {
  content: ''; position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(34,197,94,0.12) 0%, transparent 70%);
  top: -150px; left: 50%; transform: translateX(-50%); pointer-events: none;
}
.wdb-sm-overlay::after {
  content: ''; position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(34,197,94,0.06) 0%, transparent 70%);
  bottom: -100px; right: -50px; pointer-events: none;
}

.wdb-sm-modal {
  width: 100%; max-width: 1080px; min-height: 100vh; padding: 18px 40px 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  font-family: 'Inter', system-ui, sans-serif; color: #fff;
}

.wdb-sm-close {
  position: absolute; top: 16px; right: 16px; width: 36px; height: 36px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03); color: #64748b; font-size: 18px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; z-index: 10;
}
.wdb-sm-close:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* BIG BG TITLE */
.wdb-sm-bg-title {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -65%);
  font-size: 180px; font-weight: 900; text-transform: uppercase; letter-spacing: -6px;
  background: linear-gradient(180deg, rgba(34,197,94,0.07) 0%, transparent 80%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  pointer-events: none; white-space: nowrap; user-select: none; z-index: 0;
}

/* INTRO */
.wdb-sm-intro { text-align: center; margin-bottom: 8px; flex-shrink: 0; position: relative; z-index: 1; }
.wdb-sm-title-glow {
  position: absolute; width: 500px; height: 120px;
  background: radial-gradient(ellipse, rgba(34,197,94,0.2) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; filter: blur(30px);
}
.wdb-sm-title {
  font-family: 'Playfair Display', serif; font-style: italic; font-size: 40px;
  font-weight: 500; line-height: 1.2; letter-spacing: -0.5px; position: relative;
  opacity: 0; transform: translateY(30px); animation: wdbFadeUp 0.8s ease forwards; animation-delay: 0.3s;
}
.wdb-sm-title .white { color: #f1f5f9; }
.wdb-sm-title .green {
  background: linear-gradient(135deg, #22c55e, #4ade80);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.wdb-sm-site-included {
  font-size: 15px; color: #22c55e; font-weight: 700; letter-spacing: 0.5px; margin-top: 14px;
  opacity: 0; transform: translateY(20px); animation: wdbFadeUp 0.7s ease forwards; animation-delay: 1.2s;
}
.wdb-sm-subtitle {
  font-size: 14px; color: #64748b; line-height: 1.6; max-width: 560px; margin: 10px auto 0;
  opacity: 0; transform: translateY(20px); animation: wdbFadeUp 0.7s ease forwards; animation-delay: 1.8s;
}

/* DIVIDER */
.wdb-sm-divider {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin: 16px 0 14px; flex-shrink: 0;
  opacity: 0; animation: wdbFadeUp 0.5s ease forwards; animation-delay: 2.6s;
}
.wdb-sm-divider span { font-size: 11px; color: #22c55e; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; }
.wdb-sm-divider::before, .wdb-sm-divider::after {
  content: ''; width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,197,94,0.4), transparent);
}

/* CARDS */
.wdb-sm-plans {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  width: 100%; max-width: 920px; position: relative; z-index: 1;
  opacity: 0; transform: translateY(40px);
  animation: wdbFadeUp 0.9s cubic-bezier(0.16,1,0.3,1) forwards; animation-delay: 3.0s;
}
.wdb-sm-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.06); border-radius: 20px;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  overflow: hidden; display: flex; flex-direction: column; transition: all 0.4s; position: relative;
}
.wdb-sm-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 20px; padding: 1px;
  background: linear-gradient(160deg, rgba(255,255,255,0.08), transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.wdb-sm-card:hover { border-color: rgba(34,197,94,0.25); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }

.wdb-sm-card.featured {
  border-color: rgba(34,197,94,0.2);
  box-shadow: 0 0 80px rgba(34,197,94,0.06), inset 0 1px 0 rgba(34,197,94,0.1);
}
.wdb-sm-card.featured::after {
  content: ''; position: absolute; top: -1px; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(90deg, transparent, #22c55e, transparent);
}
.wdb-sm-card.featured:hover { border-color: rgba(34,197,94,0.4); box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 100px rgba(34,197,94,0.1); }

.wdb-sm-card-badge {
  display: inline-block; padding: 3px 14px;
  background: linear-gradient(135deg, #16a34a, #22c55e); color: #000;
  font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px;
  border-radius: 0 0 8px 8px; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
}

.wdb-sm-badge-impulso {
  background: transparent !important;
  color: #22c55e !important;
  border: 1px solid rgba(34,197,94,0.4);
  padding: 4px 14px;
  font-size: 8px !important;
  letter-spacing: 1.2px !important;
  white-space: nowrap;
}

.wdb-sm-card-header { padding: 28px 22px 2px; text-align: center; flex-shrink: 0; }
.wdb-sm-card-header h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; }
.wdb-sm-card.featured .wdb-sm-card-header h3 {
  background: linear-gradient(135deg, #fff, #a7f3d0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.wdb-sm-card-header p { font-size: 11px; color: #64748b; margin-top: 8px; }

.wdb-sm-included-banner {
  text-align: center; padding: 2px 22px 2px;
  font-size: 10px; font-weight: 700; color: #22c55e;
  text-transform: uppercase; letter-spacing: 1.5px;
  display: flex; align-items: center; justify-content: center; gap: 6px; flex-shrink: 0;
}
.wdb-sm-included-banner svg { width: 12px; height: 12px; fill: #22c55e; }

.wdb-sm-card-body { padding: 4px 22px; flex: 1; }

/* Categories */
.wdb-sm-cat { margin-bottom: 3px; }
.wdb-sm-cat-title {
  font-size: 11px; font-weight: 700; color: #22c55e; text-transform: uppercase;
  letter-spacing: 1.2px; margin-bottom: 4px; display: flex; align-items: center; gap: 6px;
}
.wdb-sm-cat-title > svg { width: 14px; height: 14px; fill: #22c55e; flex-shrink: 0; }

/* Info ? icon — FIXED centering */
.wdb-sm-info {
  width: 16px; height: 16px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.05);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: help; margin-left: auto; flex-shrink: 0; position: relative; transition: all 0.3s;
  font-size: 10px; font-weight: 700; color: #64748b; line-height: 1;
  text-transform: none; letter-spacing: 0;
}
.wdb-sm-info:hover { border-color: #22c55e; color: #22c55e; background: rgba(34,197,94,0.1); }
.wdb-sm-info-tip {
  position: absolute; bottom: calc(100% + 8px); right: -10px; width: 240px;
  background: #1e293b; border: 1px solid rgba(34,197,94,0.2); border-radius: 10px;
  padding: 10px 12px; font-size: 11px; color: #94a3b8; line-height: 1.5;
  font-weight: 400; text-transform: none; letter-spacing: 0;
  opacity: 0; visibility: hidden; transform: translateY(4px); transition: all 0.25s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5); pointer-events: none; z-index: 20;
}
.wdb-sm-info-tip::after {
  content: ''; position: absolute; bottom: -5px; right: 16px;
  width: 10px; height: 10px; background: #1e293b;
  border-right: 1px solid rgba(34,197,94,0.2); border-bottom: 1px solid rgba(34,197,94,0.2);
  transform: rotate(45deg);
}
.wdb-sm-info:hover .wdb-sm-info-tip { opacity: 1; visibility: visible; transform: translateY(0); }

.wdb-sm-feature {
  display: flex; align-items: center; gap: 8px; padding: 1px 0; font-size: 13px; color: #cbd5e1;
}
.wdb-sm-feature-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wdb-sm-feature-check svg { width: 10px; height: 10px; fill: #22c55e; }

/* CTA — WhatsApp animado */
.wdb-sm-card-footer { padding: 6px 22px 12px; margin-top: auto; flex-shrink: 0; }

.wdb-sm-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 13px; border: none; border-radius: 12px;
  font-size: 14px; font-weight: 700; cursor: pointer; transition: all 0.3s;
  position: relative; overflow: hidden;
}
.wdb-sm-wa-btn svg { width: 28px; height: 28px; flex-shrink: 0; animation: wdbWaShake 3s ease-in-out infinite; }

.wdb-sm-wa-btn.primary {
  background: linear-gradient(135deg, #25d366, #128c7e); color: #fff;
  box-shadow: 0 4px 24px rgba(37,211,102,0.3);
}
.wdb-sm-wa-btn.primary svg { fill: #fff; }
.wdb-sm-wa-btn.primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }

.wdb-sm-wa-btn.secondary {
  background: rgba(37,211,102,0.08); color: #25d366;
  border: 1px solid rgba(37,211,102,0.25);
}
.wdb-sm-wa-btn.secondary svg { fill: #25d366; }
.wdb-sm-wa-btn.secondary:hover { background: rgba(37,211,102,0.15); transform: translateY(-2px); border-color: #25d366; }

/* Callback link */
.wdb-sm-callback-link {
  display: block; text-align: center; margin-top: 10px; font-size: 12px;
  color: #64748b; cursor: pointer; transition: color 0.3s; border: none; background: none; width: 100%;
}
.wdb-sm-callback-link:hover { color: #22c55e; }
.wdb-sm-callback-link svg { width: 12px; height: 12px; fill: currentColor; vertical-align: -1px; margin-right: 4px; }

/* Impulso 2-col grid */
.wdb-sm-impulso-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px 16px;
}
.wdb-sm-impulso-grid .wdb-sm-feature { font-size: 12px; padding: 2px 0; }
.wdb-sm-impulso-grid .wdb-sm-feature-check { width: 16px; height: 16px; }
.wdb-sm-impulso-grid .wdb-sm-feature-check svg { width: 8px; height: 8px; }

/* URGENCY ICON — smaller */
.wdb-sm-urgency { position: absolute; top: 12px; right: 12px; z-index: 5; cursor: pointer; }
.wdb-sm-urgency-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  display: flex; align-items: center; justify-content: center;
  animation: wdbPulseIcon 2s ease-in-out infinite; position: relative;
  box-shadow: 0 0 14px rgba(245,158,11,0.4);
}
.wdb-sm-urgency-icon svg { width: 14px; height: 14px; fill: #fff; }
.wdb-sm-urgency-icon::after {
  content: ''; position: absolute; inset: -2px; border-radius: 50%;
  border: 1.5px solid rgba(245,158,11,0.3); animation: wdbPulseRing 2s ease-in-out infinite;
}
.wdb-sm-urgency-label {
  position: absolute; top: 50%; right: 36px; transform: translateY(-50%);
  background: linear-gradient(135deg, #f59e0b, #ef4444); color: #fff;
  font-size: 9px; font-weight: 800; padding: 3px 8px; border-radius: 5px;
  white-space: nowrap; box-shadow: 0 3px 10px rgba(245,158,11,0.3);
  animation: wdbLabelPulse 6s ease-in-out infinite;
  min-width: 75px; text-align: center; overflow: hidden; height: 18px;
}
.wdb-sm-urgency-label::after {
  content: ''; position: absolute; right: -4px; top: 50%; transform: translateY(-50%);
  border-left: 5px solid #ef4444; border-top: 4px solid transparent; border-bottom: 4px solid transparent;
}
.wdb-sm-urgency-label .lbl-a, .wdb-sm-urgency-label .lbl-b {
  position: absolute; top: 0; left: 0; right: 0;
  display: block; line-height: 18px; text-align: center;
}
.wdb-sm-urgency-label .lbl-a { animation: wdbLabelA 6s ease-in-out infinite; }
.wdb-sm-urgency-label .lbl-b { animation: wdbLabelB 6s ease-in-out infinite; }

/* TOOLTIP */
.wdb-sm-tooltip {
  position: absolute; top: 40px; right: -8px; width: 300px;
  background: linear-gradient(160deg, #1a2e1f 0%, #1e293b 100%);
  border: 1px solid rgba(34,197,94,0.25); border-radius: 16px; padding: 0;
  opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all 0.35s;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(34,197,94,0.08);
  pointer-events: none; overflow: hidden;
}
.wdb-sm-tooltip::before {
  content: ''; position: absolute; top: -6px; right: 16px; width: 12px; height: 12px;
  background: #1a2e1f; border-left: 1px solid rgba(34,197,94,0.25);
  border-top: 1px solid rgba(34,197,94,0.25); transform: rotate(45deg);
}
.wdb-sm-urgency:hover .wdb-sm-tooltip { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.wdb-sm-tooltip-header {
  background: linear-gradient(135deg, rgba(34,197,94,0.15), rgba(34,197,94,0.05));
  padding: 14px 18px 10px; border-bottom: 1px solid rgba(34,197,94,0.1);
  display: flex; align-items: center; gap: 8px;
}
.wdb-sm-tooltip-header svg { flex-shrink: 0; }
.wdb-sm-tooltip-header strong { font-size: 14px; color: #22c55e; font-weight: 800; }
.wdb-sm-tooltip-body { padding: 14px 18px 16px; }
.wdb-sm-tooltip-body p { font-size: 13px; color: #94a3b8; line-height: 1.7; margin: 0 0 10px 0; }
.wdb-sm-tooltip-body p:last-child { margin-bottom: 0; }
.wdb-sm-tooltip-body strong { color: #e2e8f0; }
.wdb-sm-tooltip-body .highlight { color: #22c55e; font-weight: 700; }

/* POPUP Ligacao — Premium */
.wdb-sm-popup-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.7);
  z-index: 100000000; align-items: center; justify-content: center;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.wdb-sm-popup-overlay.wdb-sm-active { display: flex; }
.wdb-sm-popup {
  background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(34,197,94,0.2); border-radius: 24px;
  padding: 36px 32px; width: 100%; max-width: 400px; position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 80px rgba(34,197,94,0.08);
  overflow: hidden;
}
.wdb-sm-popup::before {
  content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 300px; height: 200px;
  background: radial-gradient(ellipse, rgba(34,197,94,0.12) 0%, transparent 70%);
  pointer-events: none; filter: blur(20px);
}
.wdb-sm-popup::after {
  content: ''; position: absolute; top: -1px; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,197,94,0.5), transparent);
  pointer-events: none;
}
.wdb-sm-popup-close {
  position: absolute; top: 14px; right: 14px; width: 30px; height: 30px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05);
  color: #64748b; font-size: 14px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.wdb-sm-popup-close:hover { color: #fff; background: rgba(255,255,255,0.1); }

.wdb-sm-popup-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
  position: relative; z-index: 1;
}
.wdb-sm-popup-icon svg { width: 28px; height: 28px; fill: #22c55e; }

.wdb-sm-popup h4 { font-size: 20px; font-weight: 800; text-align: center; margin-bottom: 4px; position: relative; z-index: 1; color: #fff; }
.wdb-sm-popup h4 span { color: #22c55e; }
.wdb-sm-popup > p { font-size: 13px; color: #64748b; text-align: center; margin-bottom: 24px; position: relative; z-index: 1; }

.wdb-sm-popup-field { position: relative; margin-bottom: 12px; z-index: 1; }
.wdb-sm-popup-field svg {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; fill: #475569; pointer-events: none; transition: fill 0.3s;
}
.wdb-sm-popup-field input {
  width: 100%; padding: 13px 14px 13px 42px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; color: #e2e8f0; font-size: 14px; font-family: 'Inter', sans-serif;
  outline: none; transition: border-color 0.3s;
}
.wdb-sm-popup-field input:focus { border-color: #22c55e; }
.wdb-sm-popup-field input:focus ~ svg,
.wdb-sm-popup-field:focus-within svg { fill: #22c55e; }
.wdb-sm-popup-field input::placeholder { color: #475569; }

.wdb-sm-popup-submit {
  width: 100%; padding: 14px; margin-top: 8px;
  background: linear-gradient(135deg, #16a34a, #22c55e); border: none; border-radius: 12px;
  color: #fff; font-size: 15px; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.3s;
}
.wdb-sm-popup-submit:hover { box-shadow: 0 8px 30px rgba(34,197,94,0.4); transform: translateY(-2px); }
.wdb-sm-popup-submit svg { width: 18px; height: 18px; fill: #fff; }

.wdb-sm-popup-note {
  text-align: center; margin-top: 12px; font-size: 11px; color: #475569;
  display: flex; align-items: center; justify-content: center; gap: 4px;
}
.wdb-sm-popup-note svg { width: 12px; height: 12px; fill: #475569; }

/* SUCCESS STATE */
.wdb-sm-popup-bg-text {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-size: 100px; font-weight: 900; text-transform: uppercase; letter-spacing: -4px;
  background: linear-gradient(180deg, rgba(34,197,94,0.08), rgba(34,197,94,0.01));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  pointer-events: none; user-select: none; white-space: nowrap; z-index: 0; line-height: 1;
}
.wdb-sm-popup-line {
  position: absolute; top: -1px; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,197,94,0.5), transparent); z-index: 1;
}
.wdb-sm-success {
  text-align: center; padding: 20px 0; position: relative; z-index: 1;
}
.wdb-sm-success-icon {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 20px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: #fff; font-weight: 800;
  animation: wdbSuccessPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  box-shadow: 0 0 40px rgba(34,197,94,0.3);
  position: relative; z-index: 1;
}
.wdb-sm-success h3 {
  font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 8px;
  position: relative; z-index: 1;
}
.wdb-sm-success p {
  font-size: 14px; color: #94a3b8; line-height: 1.6; margin-bottom: 20px;
  position: relative; z-index: 1;
}
.wdb-sm-success-close {
  padding: 12px 32px; border: none; border-radius: 12px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff; font-size: 15px; font-weight: 700; cursor: pointer;
  transition: all 0.2s; position: relative; z-index: 1;
}
.wdb-sm-success-close:hover {
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(34,197,94,0.4);
}
/* Honeypot — hidden from humans, visible to bots */
.wdb-sm-hp {
  position: absolute !important; left: -9999px !important;
  width: 1px !important; height: 1px !important;
  overflow: hidden !important; opacity: 0 !important;
}

/* Error messages */
.wdb-sm-field-error {
  font-size: 11px; color: #ef4444; margin-top: 4px; padding-left: 14px;
}
.wdb-sm-popup-error {
  text-align: center; font-size: 12px; color: #ef4444; margin-top: 8px;
  padding: 8px; border-radius: 8px; background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
}

@keyframes wdbSuccessPop {
  0% { transform: scale(0) rotate(-45deg); opacity: 0; }
  60% { transform: scale(1.2) rotate(0deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* ANIMATIONS */
@keyframes wdbFadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes wdbPulseIcon { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
@keyframes wdbPulseRing { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0; transform: scale(1.3); } }
@keyframes wdbLabelPulse {
  0%, 15% { opacity: 0; transform: translateY(-50%) translateX(6px); }
  20%, 90% { opacity: 1; transform: translateY(-50%) translateX(0); }
  95%, 100% { opacity: 0; transform: translateY(-50%) translateX(6px); }
}
@keyframes wdbLabelA { 0%, 40% { opacity: 1; } 45%, 55% { opacity: 0; } 60%, 100% { opacity: 1; } }
@keyframes wdbLabelB { 0%, 40% { opacity: 0; } 45%, 55% { opacity: 1; } 60%, 100% { opacity: 0; } }
@keyframes wdbWaShake {
  0%, 85%, 100% { transform: rotate(0); }
  87% { transform: rotate(12deg); }
  89% { transform: rotate(-10deg); }
  91% { transform: rotate(8deg); }
  93% { transform: rotate(-6deg); }
  95% { transform: rotate(3deg); }
  97% { transform: rotate(0); }
}

/* =============================================
   CTA HERO BUTTON
   ============================================= */
@keyframes wdbCtaShine{0%{left:-100%}45%,100%{left:250%}}
@keyframes wdbCtaArrow{0%,100%{transform:translateX(0)}50%{transform:translateX(5px)}}
.wdb-cta-hero{display:inline-flex;align-items:center;gap:14px;padding:20px 48px;border-radius:16px;background-color:#25D366;background-image:linear-gradient(135deg,#2edc6f 0%,#25D366 60%,#1fbb57 100%);color:#fff;text-decoration:none;border:1px solid rgba(255,255,255,.15);position:relative;overflow:hidden;box-shadow:0 6px 30px rgba(37,211,102,.4),inset 0 1px 0 rgba(255,255,255,.25);transition:all .2s ease;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;cursor:pointer;}
.wdb-cta-hero:hover{transform:translateY(-3px);box-shadow:0 14px 50px rgba(37,211,102,.65),inset 0 1px 0 rgba(255,255,255,.3);color:#fff;text-decoration:none;}
.wdb-cta-hero .wdb-cta-shine{position:absolute;top:0;left:-100%;width:70px;height:100%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.25),transparent);animation:wdbCtaShine 2.5s ease-in-out infinite;}
.wdb-cta-hero svg{flex-shrink:0;position:relative;z-index:1;}
.wdb-cta-arrow{display:flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.15);border:1px solid rgba(255,255,255,.2);flex-shrink:0;position:relative;z-index:1;transition:background .18s ease;}
.wdb-cta-hero:hover .wdb-cta-arrow{background:rgba(255,255,255,.25);}
.wdb-cta-arrow svg{animation:wdbCtaArrow 1.8s ease-in-out infinite;}
.wdb-cta-text{position:relative;z-index:1;display:flex;flex-direction:column;align-items:center;gap:4px;}
.wdb-cta-main{font-size:20px;font-weight:800;letter-spacing:-.02em;line-height:1;}
.wdb-cta-sub{font-size:14px;font-weight:600;opacity:.75;letter-spacing:.03em;line-height:1;}
/* Card footer override */
.wdb-sm-card-footer .wdb-cta-hero{width:100%;justify-content:center;padding:14px 20px;border-radius:12px;}
.wdb-sm-card-footer .wdb-cta-main{font-size:15px;}
.wdb-sm-card-footer .wdb-cta-sub{font-size:11px;}
.wdb-sm-card-footer .wdb-cta-arrow{width:30px;height:30px;}

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 1024px) {
  .wdb-sm-modal { padding: 20px 24px; }
  .wdb-sm-plans { max-width: 780px; gap: 16px; }
  .wdb-sm-card-header h3 { font-size: 20px; }
  .wdb-sm-feature { font-size: 13px; }
  .wdb-sm-bg-title { font-size: 120px; }
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 768px) {
  .wdb-sm-modal {
    padding: 16px 16px;
    height: 100vh; height: 100dvh;
    justify-content: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .wdb-sm-bg-title { display: none; }
  .wdb-sm-header { margin-bottom: 10px; }
  .wdb-sm-header h2 { font-size: 22px; }
  .wdb-sm-subtitle { font-size: 12px; }
  .wdb-sm-site-included { font-size: 13px; margin: 6px 0; }
  .wdb-sm-desc { font-size: 12px; margin-top: 6px; }
  .wdb-sm-divider { margin: 8px 0; }
  .wdb-sm-divider span { font-size: 9px; letter-spacing: 2px; }
  .wdb-sm-divider::before, .wdb-sm-divider::after { width: 40px; }

  .wdb-sm-plans {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }
  .wdb-sm-card { border-radius: 16px; }
  .wdb-sm-card:hover { transform: none; }
  .wdb-sm-card-header { padding: 22px 18px 4px; }
  .wdb-sm-card-header h3 { font-size: 19px; }
  .wdb-sm-card-header p { font-size: 10px; }
  .wdb-sm-card-body { padding: 4px 18px; }
  .wdb-sm-cat { margin-bottom: 8px; }
  .wdb-sm-cat-title { font-size: 10px; letter-spacing: 1px; }
  .wdb-sm-feature { font-size: 13px; padding: 2px 0; gap: 7px; }
  .wdb-sm-feature-check { width: 18px; height: 18px; }
  .wdb-sm-feature-check svg { width: 9px; height: 9px; }
  .wdb-sm-card-footer { padding: 10px 18px 16px; }
  .wdb-sm-wa-btn { padding: 12px; font-size: 14px; }
  .wdb-sm-callback-link { font-size: 11px; }
  .wdb-sm-included-banner { font-size: 9px; letter-spacing: 1px; padding: 4px 18px 6px; }

  /* Fire icon / badge */
  .wdb-sm-fire-container { top: -14px; right: 12px; }
  .wdb-sm-fire-badge { width: 36px; height: 36px; }
  .wdb-sm-fire-label { font-size: 9px; padding: 2px 8px; }

  /* Tooltip — fullwidth on mobile */
  .wdb-sm-info-tip {
    position: fixed; top: auto; bottom: 20px; left: 16px; right: 16px;
    width: auto; border-radius: 12px;
  }
  .wdb-sm-info-tip::after { display: none; }

  /* Fire tooltip */
  .wdb-sm-fire-tooltip {
    position: fixed !important; top: auto !important; bottom: 20px !important;
    left: 16px !important; right: 16px !important;
    width: auto !important; min-width: auto !important;
    transform: none !important;
  }
  .wdb-sm-fire-tooltip::after { display: none; }

  /* Callback modal */
  .wdb-sm-callback-modal-content {
    width: calc(100% - 32px) !important;
    max-width: 100% !important;
    margin: 16px;
  }

  .wdb-sm-close { top: 10px; right: 10px; width: 32px; height: 32px; font-size: 16px; }
}

/* =============================================
   RESPONSIVE — MOBILE SMALL
   ============================================= */
@media (max-width: 400px) {
  .wdb-sm-modal { padding: 12px 12px; }
  .wdb-sm-header h2 { font-size: 19px; }
  .wdb-sm-feature { font-size: 12px; }
  .wdb-sm-card-header h3 { font-size: 17px; }
  .wdb-sm-cat-title { font-size: 9px; }
  .wdb-sm-wa-btn { font-size: 13px; }
}
