/* ============================================
   EMPIRE SCORE CALCULATOR - Citricus Agency
   Class prefix: .esc-
   Self-contained Avada Code Block
   ============================================ */
.esc-wrap *, .esc-wrap *::before, .esc-wrap *::after { box-sizing: border-box; margin: 0; padding: 0; }
.esc-wrap, .esc-wrap * { font-family: 'Inter', sans-serif; }
.esc-wrap {
  --esc-bg: #0a0e12;
  --esc-bg-soft: #0f1419;
  --esc-card: #1a1f26;
  --esc-card-soft: #20262e;
  --esc-text: #f7f4ee;
  --esc-text-soft: rgba(247,244,238,0.78);
  --esc-text-muted: rgba(247,244,238,0.55);
  --esc-primary: #4ECDC4;
  --esc-primary-soft: #6ee7de;
  --esc-primary-deep: #1a5c7a;
  --esc-primary-dim: rgba(78, 205, 196, 0.12);
  --esc-border: rgba(247, 244, 238, 0.08);
  --esc-border-strong: rgba(78, 205, 196, 0.18);
  --esc-success: #4ADE80;
  --esc-warning: #FBBF24;
  --esc-error: #EF4444;
  --esc-radius: 14px;
  --esc-radius-lg: 24px;
  --esc-max: 1100px;
  --esc-shadow: 0 30px 80px rgba(0,0,0,0.5);
  --esc-shadow-glow: 0 20px 60px rgba(26, 92, 122, 0.4);
  display: block;
  background: var(--esc-bg);
  color: var(--esc-text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.esc-wrap a { color: inherit; text-decoration: none; }
.esc-wrap button { border: none; background: none; cursor: pointer; font-family: inherit; }
.esc-wrap h1, .esc-wrap h2, .esc-wrap h3, .esc-wrap h4 {
  font-family: 'Outfit', sans-serif !important;
  color: var(--esc-text) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
  font-weight: 600 !important;
}
.esc-wrap h1 { font-size: clamp(34px, 5vw, 60px) !important; }
.esc-wrap h2 { font-size: clamp(26px, 3.5vw, 42px) !important; }
.esc-wrap h3 { font-size: clamp(20px, 2.2vw, 26px) !important; font-weight: 500 !important; }
.esc-wrap h4 { font-size: 18px !important; font-weight: 500 !important; }
.esc-wrap p { color: var(--esc-text-soft); line-height: 1.65; }
.esc-container { max-width: var(--esc-max); margin: 0 auto; padding: 0 24px; }
.esc-step {
  display: none;
  min-height: 100vh;
  padding: 16px 0 60px;
  position: relative;
  overflow: hidden;
}
.esc-step.is-active { display: block; }
.esc-step-1-inner {
  padding: 0;
  position: relative;
  z-index: 1;
}
.esc-bg-orbs {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 140%;
  max-width: 100vw;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.esc-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform, opacity;
}
.esc-bg-orb-1 {
  width: 38vw;
  min-width: 380px;
  max-width: 720px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(46,229,200,0.55) 0%, rgba(78,205,196,0.25) 40%, transparent 70%);
  top: -8vw; left: -8vw;
  animation: escOrb1 22s ease-in-out infinite;
  opacity: 0.85;
}
.esc-bg-orb-2 {
  width: 34vw;
  min-width: 320px;
  max-width: 640px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(110,231,222,0.5) 0%, rgba(46,229,200,0.2) 45%, transparent 75%);
  top: -5vw; right: -10vw;
  animation: escOrb2 26s ease-in-out infinite;
  opacity: 0.75;
}
.esc-bg-orb-3 {
  width: 44vw;
  min-width: 440px;
  max-width: 820px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(78,205,196,0.4) 0%, rgba(110,231,222,0.15) 50%, transparent 75%);
  bottom: -22vw; left: 20vw;
  animation: escOrb3 30s ease-in-out infinite;
  opacity: 0.6;
}
.esc-bg-orb-4 {
  width: 24vw;
  min-width: 260px;
  max-width: 460px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(46,229,200,0.7) 0%, transparent 65%);
  top: 28%; left: 50%;
  transform: translateX(-50%);
  animation: escOrb4 18s ease-in-out infinite;
  opacity: 0.5;
}
@keyframes escOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(14vw, 10vw) scale(1.15); }
  66% { transform: translate(6vw, 18vw) scale(0.9); }
}
@keyframes escOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40% { transform: translate(-18vw, 13vw) scale(1.2); }
  70% { transform: translate(-10vw, 22vw) scale(0.85); }
}
@keyframes escOrb3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-22vw, -14vw) scale(1.1); }
  50% { transform: translate(12vw, -20vw) scale(0.95); }
  75% { transform: translate(22vw, -10vw) scale(1.2); }
}
@keyframes escOrb4 {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(-160px) scale(1.4); opacity: 0.3; }
}
@media (prefers-reduced-motion: reduce) {
  .esc-bg-orb { animation: none !important; }
}
.esc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--esc-primary-dim);
  border: 1px solid rgba(78, 205, 196, 0.3);
  border-radius: 100px;
  color: var(--esc-primary-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.esc-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--esc-primary);
  box-shadow: 0 0 0 0 rgba(78,205,196,0.7);
  animation: escPulse 2s infinite;
}
@keyframes escPulse {
  0% { box-shadow: 0 0 0 0 rgba(78,205,196,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(78,205,196,0); }
  100% { box-shadow: 0 0 0 0 rgba(78,205,196,0); }
}
.esc-hero-content {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 2;
}
.esc-free-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px 14px 20px;
  background: linear-gradient(115deg, #2EE5C8 0%, #4ECDC4 50%, #2EE5C8 100%);
  background-size: 200% 200%;
  animation: escFreeBadgeShift 4s ease-in-out infinite, escFreeBadgePulse 2.4s ease-in-out infinite;
  border-radius: 100px;
  margin-bottom: 20px;
  box-shadow: 0 12px 36px rgba(46,229,200,0.45), 0 0 0 4px rgba(46,229,200,0.18);
  position: relative;
  overflow: hidden;
  transform: rotate(-1deg);
}
@keyframes escFreeBadgeShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes escFreeBadgePulse {
  0%, 100% { box-shadow: 0 12px 36px rgba(46,229,200,0.45), 0 0 0 4px rgba(46,229,200,0.18); }
  50% { box-shadow: 0 18px 50px rgba(46,229,200,0.65), 0 0 0 6px rgba(46,229,200,0.25), 0 0 40px rgba(78,205,196,0.4); }
}
.esc-free-badge-flash {
  position: absolute;
  top: 0; left: -120%;
  width: 50%; height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
  animation: escFreeBadgeShine 3s ease-in-out infinite;
  pointer-events: none;
  transform: skewX(-20deg);
}
@keyframes escFreeBadgeShine {
  0% { left: -120%; }
  60%, 100% { left: 220%; }
}
.esc-free-badge-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  animation: escSparkleRotate 8s linear infinite;
}
@keyframes escSparkleRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.esc-free-badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  text-align: left;
}
.esc-free-badge-text strong {
  font-family: 'Outfit', sans-serif !important;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1;
  font-weight: 800 !important;
  color: #0a3f3a;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
}
.esc-free-badge-text span {
  font-size: 11px;
  color: rgba(10,63,58,0.85);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 3px;
}
@media (max-width: 480px) {
  .esc-free-badge { padding: 12px 18px 12px 14px; gap: 10px; }
  .esc-free-badge-icon { width: 32px; height: 32px; }
  .esc-free-badge-text strong { font-size: 19px; }
  .esc-free-badge-text span { font-size: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  .esc-free-badge, .esc-free-badge-flash, .esc-free-badge-icon { animation: none !important; }
}
.esc-free-inline {
  background: linear-gradient(115deg, #2EE5C8 0%, #6ee7de 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0;
}
.esc-btn-undertext {
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: var(--esc-text-soft);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.esc-hero-content { margin-bottom: 36px !important; }
.esc-hero-content h1 { margin-bottom: 18px !important; font-size: clamp(28px, 4.2vw, 52px) !important; }
.esc-hero-content h1 em {
  font-style: italic;
  color: var(--esc-primary) !important;
  font-family: 'Outfit', sans-serif !important;
  background: linear-gradient(115deg, #2EE5C8 0%, #6ee7de 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 0.12em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.esc-hero-content p {
  font-size: clamp(15px, 1.4vw, 18px);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.55;
}
.esc-hero-content p br { display: inline; }
@media (max-width: 820px) { .esc-hero-content p br { display: none; } }
@media (max-width: 600px) { .esc-hero-content h1 br { display: none; } }
.esc-form-card {
  background: var(--esc-card);
  border: 1px solid var(--esc-border-strong);
  border-radius: var(--esc-radius-lg);
  padding: 28px 32px;
  box-shadow: var(--esc-shadow);
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 600px) { .esc-form-card { padding: 22px 18px; } }
.esc-url-field { margin-bottom: 18px !important; }
.esc-url-field label {
  display: block !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--esc-text) !important;
  margin-bottom: 8px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-family: 'Inter', sans-serif !important;
}
.esc-url-input-wrap { position: relative; margin-bottom: 8px; }
.esc-field-hint { font-size: 12px; color: var(--esc-text-muted); line-height: 1.4; padding-left: 2px; }
.esc-url-input-wrap::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234ECDC4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><line x1='2' y1='12' x2='22' y2='12'/><path d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
}
.esc-url-input {
  width: 100% !important;
  background: var(--esc-bg) !important;
  background-color: var(--esc-bg) !important;
  border: 2px solid var(--esc-border-strong) !important;
  border-radius: 12px !important;
  padding: 16px 20px 16px 52px !important;
  color: var(--esc-text) !important;
  font-size: 16px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.esc-url-input:focus { outline: none !important; border-color: var(--esc-primary) !important; background: var(--esc-bg) !important; }
.esc-url-input::placeholder { color: var(--esc-text-muted) !important; font-weight: 400 !important; opacity: 1 !important; }
.esc-url-input:-webkit-autofill, .esc-url-input:-webkit-autofill:hover, .esc-url-input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--esc-text) !important;
  -webkit-box-shadow: 0 0 0 1000px var(--esc-bg) inset !important;
  transition: background-color 5000s ease-in-out 0s;
}
.esc-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
  margin-bottom: 18px;
}
@media (max-width: 600px) { .esc-form-grid { grid-template-columns: 1fr; gap: 10px; } }
.esc-field label {
  display: block !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--esc-text) !important;
  margin-bottom: 8px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-family: 'Inter', sans-serif !important;
}
.esc-input, .esc-select {
  width: 100% !important;
  background: var(--esc-bg-soft) !important;
  background-color: var(--esc-bg-soft) !important;
  border: 1px solid var(--esc-border-strong) !important;
  border-radius: 10px !important;
  padding: 11px 14px !important;
  color: var(--esc-text) !important;
  font-size: 14.5px !important;
  font-family: 'Inter', sans-serif !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  transition: border-color 0.2s ease;
}
.esc-input:focus, .esc-select:focus { outline: none !important; border-color: var(--esc-primary) !important; }
.esc-input::placeholder { color: var(--esc-text-muted) !important; opacity: 1 !important; }
.esc-select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A8AEB8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 20px !important;
  padding-right: 48px !important;
}
.esc-select option { background: var(--esc-bg-soft) !important; color: var(--esc-text) !important; }
.esc-cf7-wrap .wpcf7 { display: block; }
.esc-cf7-wrap .wpcf7-form { display: flex; flex-direction: column; gap: 12px; margin: 0 !important; padding: 0 !important; }
.esc-cf7-wrap .wpcf7-form > p { margin: 0 !important; padding: 0 !important; display: contents !important; }
.esc-cf7-wrap .wpcf7 br { display: none !important; }
.esc-cf7-wrap .wpcf7-form-control-wrap { display: block !important; position: relative; }
.esc-cf7-wrap .wpcf7 input[type="url"] {
  width: 100% !important;
  background: var(--esc-bg) !important;
  border: 2px solid var(--esc-border-strong) !important;
  border-radius: 12px !important;
  padding: 16px 20px !important;
  color: var(--esc-text) !important;
  font-size: 16px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  transition: border-color 0.2s ease;
}
.esc-cf7-wrap .wpcf7 input[type="url"]:focus { outline: none !important; border-color: var(--esc-primary) !important; }
.esc-cf7-wrap .wpcf7 input[type="text"],
.esc-cf7-wrap .wpcf7 input[type="email"],
.esc-cf7-wrap .wpcf7 input[type="tel"] {
  width: 100% !important;
  background: var(--esc-bg-soft) !important;
  border: 1px solid var(--esc-border-strong) !important;
  border-radius: 10px !important;
  padding: 13px 16px !important;
  color: var(--esc-text) !important;
  font-size: 14.5px !important;
  font-family: 'Inter', sans-serif !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  transition: border-color 0.2s ease;
}
.esc-cf7-wrap .wpcf7 input[type="text"]:focus,
.esc-cf7-wrap .wpcf7 input[type="email"]:focus,
.esc-cf7-wrap .wpcf7 input[type="tel"]:focus { outline: none !important; border-color: var(--esc-primary) !important; }
.esc-cf7-wrap .wpcf7 input::placeholder { color: var(--esc-text-muted) !important; opacity: 1 !important; font-weight: 400 !important; }
.esc-cf7-wrap .wpcf7 input:-webkit-autofill,
.esc-cf7-wrap .wpcf7 input:-webkit-autofill:hover,
.esc-cf7-wrap .wpcf7 input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--esc-text) !important;
  -webkit-box-shadow: 0 0 0 1000px var(--esc-bg-soft) inset !important;
  transition: background-color 5000s ease-in-out 0s;
}
.esc-cf7-wrap .wpcf7 input.wpcf7-not-valid { border-color: #EF4444 !important; }
.esc-cf7-wrap .wpcf7-not-valid-tip { color: #EF4444 !important; font-size: 12px !important; margin-top: 4px !important; padding: 0 !important; font-weight: 500; }
.esc-cf7-wrap .wpcf7-response-output { display: none !important; }
.esc-cf7-wrap .wpcf7 input[type="submit"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(115deg, #00E5A8 0%, #2EE5C8 25%, #6ee7de 50%, #2EE5C8 75%, #00E5A8 100%) !important;
  background-size: 250% 250% !important;
  animation: escBtnShift 4.5s ease-in-out infinite, escBtnGlow 2.6s ease-in-out infinite !important;
  color: #062e2b !important;
  padding: 20px 32px !important;
  border-radius: 100px !important;
  font-weight: 800 !important;
  font-size: 16px !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
  font-family: 'Outfit', 'Inter', sans-serif !important;
  border: none !important;
  box-shadow: 0 18px 50px rgba(0, 229, 168, 0.5), 0 0 0 2px rgba(46, 229, 200, 0.3), inset 0 1px 0 rgba(255,255,255,0.35) !important;
  text-shadow: 0 1px 0 rgba(255,255,255,0.25) !important;
  cursor: pointer !important;
  width: 100% !important;
  margin-top: 8px !important;
  transition: transform 0.25s ease, filter 0.3s ease !important;
}
.esc-cf7-wrap .wpcf7 input[type="submit"]:hover { transform: translateY(-3px) scale(1.015) !important; filter: brightness(1.06) saturate(1.15) !important; }
.esc-cf7-wrap .wpcf7 input[type="submit"]:active { transform: translateY(-1px) scale(1) !important; }
@media (max-width: 600px) { .esc-cf7-wrap .wpcf7 input[type="submit"] { font-size: 13px !important; padding: 16px 18px !important; } }
.esc-cf7-wrap .wpcf7-spinner { background-color: var(--esc-primary) !important; }
.esc-phone-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
  background: var(--esc-bg-soft);
  border: 1px solid var(--esc-border-strong);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.esc-phone-wrap:focus-within { border-color: var(--esc-primary); }
.esc-phone-dial {
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: rgba(46,229,200,0.08);
  border-right: 1px solid var(--esc-border-strong);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--esc-primary-soft);
  letter-spacing: 0.02em;
  white-space: nowrap;
  min-width: 64px;
  justify-content: center;
}
.esc-phone-input {
  flex: 1;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
}
.esc-phone-input:disabled { cursor: not-allowed; opacity: 0.6; }
.esc-phone-wrap:has(.esc-phone-input:disabled) { opacity: 0.7; }
.esc-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(115deg, #00E5A8 0%, #2EE5C8 25%, #6ee7de 50%, #2EE5C8 75%, #00E5A8 100%) !important;
  background-size: 250% 250% !important;
  animation: escBtnShift 4.5s ease-in-out infinite, escBtnGlow 2.6s ease-in-out infinite;
  color: #062e2b !important;
  padding: 20px 32px;
  border-radius: 100px;
  font-weight: 800 !important;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: 'Outfit', 'Inter', sans-serif !important;
  transition: transform 0.25s ease, filter 0.3s ease;
  box-shadow: 0 18px 50px rgba(0, 229, 168, 0.5), 0 0 0 2px rgba(46, 229, 200, 0.3), inset 0 1px 0 rgba(255,255,255,0.35);
  width: 100%;
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 0 rgba(255,255,255,0.25);
}
@keyframes escBtnShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes escBtnGlow {
  0%, 100% { box-shadow: 0 18px 50px rgba(0, 229, 168, 0.5), 0 0 0 2px rgba(46, 229, 200, 0.3), inset 0 1px 0 rgba(255,255,255,0.35); }
  50% { box-shadow: 0 24px 70px rgba(0, 229, 168, 0.75), 0 0 0 4px rgba(46, 229, 200, 0.4), 0 0 50px rgba(110, 231, 222, 0.5), inset 0 1px 0 rgba(255,255,255,0.4); }
}
.esc-btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
  animation: escBtnShine 3.2s ease-in-out infinite;
  pointer-events: none;
  transform: skewX(-20deg);
}
@keyframes escBtnShine {
  0% { left: -120%; }
  60%, 100% { left: 220%; }
}
.esc-btn-primary:hover { transform: translateY(-3px) scale(1.015); filter: brightness(1.06) saturate(1.15); color: #062e2b !important; }
.esc-btn-primary:active { transform: translateY(-1px) scale(1); }
.esc-btn-primary svg { transition: transform 0.25s ease; position: relative; z-index: 2; }
.esc-btn-primary:hover svg { transform: translateX(5px); }
.esc-btn-primary > span { position: relative; z-index: 2; }
@media (max-width: 600px) { .esc-btn-primary { font-size: 13px; padding: 16px 18px; letter-spacing: 0.015em; gap: 8px; } .esc-btn-primary svg { width: 16px; height: 16px; } }
@media (max-width: 380px) { .esc-btn-primary { font-size: 12px; padding: 15px 14px; } }
@media (prefers-reduced-motion: reduce) { .esc-btn-primary, .esc-btn-primary::before { animation: none !important; } }
.esc-form-error {
  display: none;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #FCA5A5;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 16px;
}
.esc-form-error.is-visible { display: block; }
.esc-trust-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--esc-border);
  color: var(--esc-text-muted);
  font-size: 13px;
  position: relative;
  z-index: 2;
}
.esc-trust-row span { display: flex; align-items: center; gap: 6px; }
.esc-trust-row svg { color: var(--esc-success); }
.esc-trust-row .esc-trust-free { background: rgba(46,229,200,0.12); border: 1px solid rgba(46,229,200,0.3); padding: 4px 12px; border-radius: 100px; color: #6ee7de; }
.esc-trust-row .esc-trust-free strong { font-weight: 700; letter-spacing: 0.04em; color: #6ee7de; }
.esc-trust-row .esc-trust-free svg { color: #6ee7de; }
.esc-loading-screen {
  max-width: 640px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  text-align: center;
}
.esc-loading-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  background: linear-gradient(135deg, rgba(15,20,25,0.95) 0%, rgba(26,92,122,0.4) 100%);
  border: 1px solid rgba(78,205,196,0.2);
  border-radius: 14px;
  margin-bottom: 36px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
}
.esc-loading-logo { display: block; max-width: 180px; height: auto; opacity: 0.98; }
.esc-loader-orb { width: 120px; height: 120px; margin: 0 auto 32px; position: relative; }
.esc-loader-orb::before, .esc-loader-orb::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--esc-primary);
}
.esc-loader-orb::before { animation: escSpin 1.5s linear infinite; }
.esc-loader-orb::after { border-top-color: var(--esc-primary-soft); animation: escSpin 2s linear infinite reverse; inset: 12px; }
@keyframes escSpin { to { transform: rotate(360deg); } }
.esc-loader-center {
  position: absolute;
  inset: 36px;
  background: var(--esc-primary-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--esc-primary);
  animation: escPulseBg 2s ease-in-out infinite;
}
@keyframes escPulseBg {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.92); opacity: 0.7; }
}
.esc-loading-screen h2 { margin-bottom: 16px !important; }
.esc-loading-screen p { margin-bottom: 24px; }
.esc-typewriter {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin: 0 auto 36px;
  padding: 12px 20px;
  max-width: 560px;
  background: rgba(78,205,196,0.04);
  border: 1px solid rgba(78,205,196,0.12);
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--esc-primary-soft);
  letter-spacing: -0.005em;
  text-align: center;
}
.esc-typewriter-text { display: inline; white-space: pre-wrap; }
.esc-typewriter-cursor { display: inline-block; color: var(--esc-primary); margin-left: 1px; font-weight: 300; animation: escBlink 1s steps(2) infinite; }
@keyframes escBlink { 50% { opacity: 0; } }
@media (max-width: 600px) {
  .esc-loading-brand { padding: 14px 24px; margin-bottom: 28px; }
  .esc-loading-logo { max-width: 150px; }
  .esc-typewriter { font-size: 13px; padding: 10px 16px; min-height: 40px; }
}
.esc-checks-list {
  list-style: none;
  text-align: left;
  max-width: 380px;
  margin: 0 auto;
}
.esc-check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  font-size: 15px;
  color: var(--esc-text-muted);
  border-bottom: 1px solid var(--esc-border);
  transition: color 0.3s ease;
}
.esc-check-item:last-child { border-bottom: none; }
.esc-check-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--esc-bg-soft);
  border: 2px solid var(--esc-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.esc-check-item.is-loading .esc-check-icon { border-color: var(--esc-primary); border-top-color: transparent; animation: escSpin 0.8s linear infinite; }
.esc-check-item.is-loading { color: var(--esc-text); }
.esc-check-item.is-done .esc-check-icon { background: var(--esc-success); border-color: var(--esc-success); }
.esc-check-item.is-done .esc-check-icon::after {
  content: '';
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a0e12' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}
.esc-check-item.is-done { color: var(--esc-text-soft); }
.esc-results-inner { padding: 40px 0; }
.esc-results-header { text-align: center; margin-bottom: 48px; }
.esc-results-header h2 { margin-bottom: 12px !important; }
.esc-results-header p { color: var(--esc-text-muted); font-size: 15px; }
.esc-critical-banner {
  display: flex; gap: 18px; align-items: center;
  padding: 22px 26px; margin: 0 auto 36px;
  max-width: 880px;
  background: linear-gradient(135deg, rgba(239,68,68,0.12) 0%, rgba(239,68,68,0.04) 100%);
  border: 1px solid rgba(239,68,68,0.35);
  border-left: 4px solid #ef4444;
  border-radius: 12px;
}
.esc-critical-icon {
  flex-shrink: 0; color: #ef4444;
  display: flex; align-items: center;
}
.esc-critical-content { flex: 1; min-width: 0; }
.esc-critical-title {
  font-family: 'Outfit', sans-serif;
  font-size: 17px; font-weight: 800;
  letter-spacing: 0.04em; color: #fca5a5;
  margin-bottom: 6px;
}
.esc-critical-text {
  font-size: 14px; line-height: 1.55;
  color: rgba(255,255,255,0.78);
}
.esc-screens-block {
  display: flex; gap: 18px; align-items: flex-end;
  padding: 22px; margin: 0 auto 48px;
  max-width: 880px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
}
.esc-screens-desktop {
  flex: 1.7; background: #1a1f2e; border-radius: 10px;
  padding: 9px 9px 7px; position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.esc-screens-bar {
  display: flex; gap: 6px; align-items: center;
  padding: 4px 6px 9px;
}
.esc-screens-dot {
  width: 10px; height: 10px; border-radius: 50%;
  display: inline-block;
}
.esc-screens-dot-red { background: #ff5f57; }
.esc-screens-dot-yellow { background: #ffbd2e; }
.esc-screens-dot-green { background: #28ca42; }
.esc-screens-urlbar {
  flex: 1; background: #0a0e12; border-radius: 4px;
  height: 16px; margin-left: 8px;
  font-family: monospace; font-size: 10px;
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; padding: 0 10px;
}
.esc-screens-img-wrap {
  position: relative; border-radius: 6px; overflow: hidden;
  background: #0a0e12;
}
.esc-screens-img-wrap img {
  width: 100%; height: auto; display: block;
  min-height: 240px; object-fit: cover; object-position: top;
}
.esc-screens-img-wrap-mobile img {
  min-height: 290px;
}
.esc-screens-badge {
  position: absolute; top: 10px; right: 12px;
  padding: 4px 9px; background: rgba(78,205,196,0.95);
  color: #0a0e12; border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
}
.esc-screens-mobile {
  flex: 0 0 150px; background: #1a1f2e;
  border-radius: 14px; padding: 8px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.esc-screens-badge-mobile {
  top: 14px; left: 50%; right: auto;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .esc-screens-block { flex-direction: column; align-items: stretch; }
  .esc-screens-mobile { flex: 0 0 auto; max-width: 200px; align-self: center; }
}
.esc-score-card {
  background: linear-gradient(180deg, var(--esc-card) 0%, var(--esc-bg-soft) 100%);
  border: 1px solid var(--esc-border-strong);
  border-radius: var(--esc-radius-lg);
  padding: 56px 40px;
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.esc-score-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(78,205,196,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.esc-score-gauge { position: relative; width: 260px; height: 260px; margin: 0 auto 32px; }
.esc-score-svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.esc-score-track { fill: none; stroke: var(--esc-border-strong); stroke-width: 14; }
.esc-score-fill { fill: none; stroke-width: 14; stroke-linecap: round; transition: stroke-dashoffset 1.8s cubic-bezier(0.4, 0, 0.2, 1); }
.esc-score-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.esc-score-number {
  font-family: 'Outfit', sans-serif;
  font-size: 88px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--esc-text);
}
.esc-score-label { font-size: 13px; color: var(--esc-text-muted); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 6px; font-weight: 600; }
.esc-score-verdict {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.esc-score-verdict.is-critical { background: rgba(239,68,68,0.15); color: var(--esc-error); border: 1px solid rgba(239,68,68,0.3); }
.esc-score-verdict.is-weak { background: rgba(251,191,36,0.15); color: var(--esc-warning); border: 1px solid rgba(251,191,36,0.3); }
.esc-score-verdict.is-ok { background: rgba(255,179,71,0.15); color: var(--esc-primary-soft); border: 1px solid rgba(255,179,71,0.3); }
.esc-score-verdict.is-strong { background: rgba(74,222,128,0.15); color: var(--esc-success); border: 1px solid rgba(74,222,128,0.3); }
.esc-score-summary {
  max-width: 580px !important;
  width: 100% !important;
  margin: 0 auto !important;
  font-size: 16px;
  color: var(--esc-text-soft);
  text-align: center !important;
  display: block !important;
  line-height: 1.6 !important;
}
.esc-score-summary strong { color: var(--esc-primary-soft); font-weight: 600; }
.esc-cats-section { margin-bottom: 40px; }
.esc-tech-section { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
@media (max-width: 760px) { .esc-tech-section { grid-template-columns: 1fr; } }
.esc-tech-card { background: var(--esc-card); border: 1px solid var(--esc-border); border-radius: var(--esc-radius); padding: 26px; }
.esc-tech-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.esc-tech-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--esc-primary-dim); color: var(--esc-primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.esc-tech-title { font-family: 'Outfit', sans-serif !important; font-size: 13px !important; font-weight: 600 !important; color: var(--esc-text) !important; letter-spacing: 0.04em !important; text-transform: uppercase !important; margin: 0 !important; }
.esc-tech-main { font-family: 'Outfit', sans-serif; font-size: 26px; font-weight: 600; color: var(--esc-text); line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 10px; }
.esc-tech-meta { font-size: 13px; color: var(--esc-text-soft); line-height: 1.55; margin-bottom: 12px; }
.esc-tech-meta strong { color: var(--esc-text); font-weight: 600; }
.esc-tech-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.esc-tech-tag { display: inline-block; padding: 4px 10px; background: rgba(78,205,196,0.08); border: 1px solid rgba(78,205,196,0.2); border-radius: 100px; font-size: 11px; font-weight: 500; color: var(--esc-primary-soft); letter-spacing: 0.02em; }
.esc-tech-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--esc-border); }
.esc-tech-stat-label { font-size: 11px; color: var(--esc-text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; font-weight: 600; }
.esc-tech-stat-value { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 600; color: var(--esc-text); }
.esc-pdf-row { display: flex; flex-direction: column; align-items: center; gap: 12px; margin: 0 auto 48px; padding: 0; background: transparent; border: none; text-align: center; position: relative; }
.esc-pdf-btn {
  position: relative;
  z-index: 1;
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
  padding: 18px 36px !important;
  background: linear-gradient(135deg, #00E5A8 0%, #00C896 100%) !important;
  color: #0a0e12 !important;
  border: none !important;
  border-radius: 100px !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.35s ease, transform 0.25s ease, box-shadow 0.25s ease, color 0.35s ease !important;
  box-shadow: 0 14px 40px rgba(0,229,168,0.4) !important;
  animation: esc-pdf-pulse 2.5s ease-in-out infinite;
  text-transform: none !important;
  text-decoration: none !important;
  line-height: 1 !important;
  outline: none !important;
}
@keyframes esc-pdf-pulse {
  0%, 100% { box-shadow: 0 14px 40px rgba(0,229,168,0.35), 0 0 0 0 rgba(0,229,168,0.5); }
  50% { box-shadow: 0 14px 40px rgba(0,229,168,0.5), 0 0 0 14px rgba(0,229,168,0); }
}
.esc-pdf-btn:hover, .esc-pdf-btn:focus, .esc-pdf-btn:active {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #00E5A8 0%, #1a5c7a 100%) !important;
  color: #fff !important;
  animation-play-state: paused;
  box-shadow: 0 22px 56px rgba(0,229,168,0.45), 0 12px 32px rgba(26,92,122,0.4) !important;
}
.esc-pdf-btn:hover svg, .esc-pdf-btn:focus svg, .esc-pdf-btn:active svg { color: #fff !important; stroke: #fff !important; }
.esc-pdf-btn:disabled { opacity: 0.7 !important; cursor: wait !important; transform: none !important; animation: none !important; }
.esc-pdf-btn svg { color: #0a0e12 !important; stroke: #0a0e12 !important; transition: color 0.35s ease, stroke 0.35s ease; }
.esc-pdf-btn span { color: inherit !important; }
.esc-pdf-meta { font-size: 13px; color: var(--esc-text-soft); }
.esc-overview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
@media (max-width: 760px) { .esc-overview-grid { grid-template-columns: 1fr; } }
.esc-overview-card { background: var(--esc-card); border: 1px solid var(--esc-border); border-radius: var(--esc-radius); padding: 24px; display: flex; align-items: flex-start; gap: 16px; position: relative; overflow: hidden; }
.esc-overview-icon-wrap { flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px; background: var(--esc-primary-dim); color: var(--esc-primary); display: flex; align-items: center; justify-content: center; }
.esc-overview-content { flex: 1; min-width: 0; }
.esc-overview-label { font-size: 12px; color: var(--esc-text-muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-bottom: 6px; }
.esc-overview-value { font-family: 'Outfit', sans-serif; font-size: 28px; font-weight: 600; color: var(--esc-text); line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 6px; word-break: break-word; }
.esc-overview-sub { font-size: 13px; color: var(--esc-text-soft); line-height: 1.4; }
.esc-overview-badge { display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-top: 6px; }
.esc-overview-badge.is-good { background: rgba(74,222,128,0.15); color: var(--esc-success); }
.esc-overview-badge.is-mid { background: rgba(251,191,36,0.15); color: var(--esc-warning); }
.esc-overview-badge.is-bad { background: rgba(239,68,68,0.15); color: var(--esc-error); }
.esc-cats-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.esc-cats-header h3 { font-size: 22px !important; }
.esc-cats-header span { color: var(--esc-text-muted); font-size: 13px; }
.esc-cats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.esc-cat-card { background: var(--esc-card); border: 1px solid var(--esc-border); border-radius: var(--esc-radius); padding: 24px; transition: border-color 0.2s ease; }
.esc-cat-card:hover { border-color: var(--esc-border-strong); }
.esc-cat-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.esc-cat-icon-wrap { width: 42px; height: 42px; border-radius: 10px; background: var(--esc-primary-dim); color: var(--esc-primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.esc-cat-score-num { font-family: 'Outfit', sans-serif; font-size: 28px; font-weight: 600; line-height: 1; }
.esc-cat-score-num.is-good { color: var(--esc-success); }
.esc-cat-score-num.is-mid { color: var(--esc-warning); }
.esc-cat-score-num.is-bad { color: var(--esc-error); }
.esc-cat-score-num small { font-size: 14px; color: var(--esc-text-muted); font-weight: 400; }
.esc-cat-title { margin: 0 0 6px !important; font-size: 17px !important; color: var(--esc-text) !important; }
.esc-cat-desc { font-size: 13px; color: var(--esc-text-muted); margin-bottom: 16px; }
.esc-cat-bar { height: 6px; background: var(--esc-bg-soft); border-radius: 3px; overflow: hidden; margin-bottom: 16px; }
.esc-cat-bar-fill { height: 100%; border-radius: 3px; transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1); }
.esc-cat-bar-fill.is-good { background: var(--esc-success); }
.esc-cat-bar-fill.is-mid { background: var(--esc-warning); }
.esc-cat-bar-fill.is-bad { background: var(--esc-error); }
.esc-cat-insight { font-size: 13px; color: var(--esc-text-soft); padding-top: 14px; border-top: 1px solid var(--esc-border); line-height: 1.5; }
.esc-problems-card { background: var(--esc-card); border: 1px solid var(--esc-border-strong); border-radius: var(--esc-radius-lg); padding: 40px; margin-bottom: 32px; border-left: 4px solid var(--esc-warning); }
@media (max-width: 600px) { .esc-problems-card { padding: 28px 20px; } }
.esc-problems-card h3 { display: flex; align-items: center; gap: 12px; margin-bottom: 24px !important; }
.esc-problems-list { list-style: none; }
.esc-problem-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--esc-border); }
.esc-problem-item:last-child { border-bottom: none; }
.esc-problem-num { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--esc-primary-dim); color: var(--esc-primary); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; font-family: 'Outfit', sans-serif; }
.esc-problem-content h4 { font-size: 16px !important; color: var(--esc-text) !important; margin-bottom: 6px !important; font-family: 'Inter', sans-serif !important; font-weight: 700 !important; letter-spacing: 0 !important; }
.esc-problem-content p { font-size: 14px; color: var(--esc-text-soft); line-height: 1.55; }
.esc-problem-content strong { color: var(--esc-primary-soft); }
.esc-opp-card {
  background: linear-gradient(135deg, rgba(78,205,196,0.12) 0%, rgba(78,205,196,0.04) 100%);
  border: 1px solid rgba(78,205,196,0.3);
  border-radius: var(--esc-radius-lg);
  padding: 40px;
  margin-bottom: 32px;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  position: relative;
  overflow: hidden;
}
.esc-opp-eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--esc-primary); margin-bottom: 16px; text-align: center !important; }
.esc-opp-card h3 { margin-bottom: 16px !important; text-align: center !important; width: 100% !important; }
.esc-opp-stat { font-family: 'Outfit', sans-serif; font-size: clamp(48px, 7vw, 76px); font-weight: 700; color: var(--esc-primary); line-height: 1; margin: 16px 0; letter-spacing: -0.04em; text-align: center !important; width: 100% !important; }
.esc-opp-card p { max-width: 580px !important; margin: 0 auto !important; font-size: 16px; text-align: center !important; width: 100% !important; }
.esc-cta-card { background: var(--esc-card); border: 1px solid var(--esc-border-strong); border-radius: var(--esc-radius-lg); padding: 48px; text-align: center; position: relative; overflow: hidden; }
.esc-cta-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at center top, rgba(78,205,196,0.15) 0%, transparent 60%); pointer-events: none; }
@media (max-width: 600px) { .esc-cta-card { padding: 32px 20px; } }
.esc-cta-inner { position: relative; z-index: 2; }
.esc-cta-price { display: inline-flex; align-items: baseline; gap: 8px; margin-bottom: 16px; padding: 6px 16px; background: rgba(78,205,196,0.1); border-radius: 100px; }
.esc-cta-price-currency { color: var(--esc-primary); font-size: 14px; font-weight: 600; }
.esc-cta-price-amount { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 700; color: var(--esc-primary); }
.esc-cta-price-old { text-decoration: line-through; color: var(--esc-text-muted); font-size: 13px; font-weight: 500; }
.esc-cta-card h2 { margin-bottom: 16px !important; max-width: 600px; margin-left: auto !important; margin-right: auto !important; }
.esc-cta-card p { max-width: 540px; margin: 0 auto 32px; font-size: 16px; }
.esc-cta-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; max-width: 720px; margin: 0 auto 36px; text-align: left; }
.esc-cta-feature { display: flex; gap: 10px; align-items: flex-start; padding: 14px; background: rgba(255,255,255,0.03); border-radius: 10px; border: 1px solid var(--esc-border); }
.esc-cta-feature-icon { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--esc-success); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.esc-cta-feature-icon::after {
  content: '';
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a0e12' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}
.esc-cta-feature span { font-size: 14px; color: var(--esc-text-soft); line-height: 1.4; }
.esc-secondary-cta { display: inline-block; margin-top: 24px; color: var(--esc-text-muted); font-size: 14px; text-decoration: underline; text-decoration-color: var(--esc-border-strong); text-underline-offset: 4px; }
.esc-secondary-cta:hover { color: var(--esc-primary-soft); }
.esc-signature { margin: 64px auto 32px; max-width: 920px; padding: 40px 32px; background: linear-gradient(135deg, var(--esc-card) 0%, var(--esc-card-soft) 100%); border: 1px solid var(--esc-border); border-radius: var(--esc-radius-lg); display: flex; align-items: center; gap: 40px; position: relative; overflow: hidden; }
.esc-signature::before { content: ''; position: absolute; top: 0; right: 0; width: 280px; height: 280px; background: radial-gradient(circle, rgba(78,205,196,0.08) 0%, transparent 60%); pointer-events: none; }
.esc-sig-photo-wrap { position: relative; width: 200px; height: 200px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.esc-sig-photo-glow { position: absolute; inset: -12px; border-radius: 50%; background: conic-gradient(from 0deg, #4ECDC4 0%, #6ee7de 25%, #1a5c7a 50%, #4ECDC4 75%, #4ECDC4 100%); filter: blur(14px); opacity: 0.55; animation: escSigSpin 16s linear infinite; }
.esc-sig-photo-ring { position: absolute; inset: -20px; border-radius: 50%; border: 1px dashed rgba(78,205,196,0.4); animation: escSigSpin 28s linear infinite reverse; }
.esc-sig-photo-ring::before { content: ''; position: absolute; top: -5px; left: 50%; margin-left: -5px; width: 10px; height: 10px; background: linear-gradient(135deg, #4ECDC4 0%, #1a5c7a 100%); border-radius: 50%; box-shadow: 0 0 14px rgba(78,205,196,0.7); }
.esc-sig-photo { position: relative; z-index: 2; width: 200px; height: 200px; border-radius: 50%; object-fit: cover; border: 4px solid var(--esc-card); box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(78,205,196,0.4); }
@keyframes escSigSpin { to { transform: rotate(360deg); } }
.esc-sig-content { flex: 1; min-width: 0; position: relative; z-index: 1; }
.esc-sig-kicker { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; color: var(--esc-primary-soft); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.esc-sig-kicker::before { content: ''; width: 24px; height: 1px; background: linear-gradient(90deg, #4ECDC4 0%, #1a5c7a 100%); }
.esc-sig-name { font-family: 'Outfit', sans-serif !important; font-size: 32px !important; font-weight: 700 !important; letter-spacing: -0.02em !important; color: var(--esc-text) !important; margin: 0 0 4px 0 !important; line-height: 1.1 !important; }
.esc-sig-role { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500; color: var(--esc-primary); letter-spacing: -0.005em; margin-bottom: 16px; }
.esc-sig-bio { font-family: 'Inter', sans-serif; font-size: 14.5px; line-height: 1.65; color: var(--esc-text-soft); margin-bottom: 16px; }
.esc-sig-bio strong { color: var(--esc-text); font-weight: 600; }
.esc-sig-flags { display: inline-flex; gap: 4px; vertical-align: middle; font-size: 16px; line-height: 1; margin: 0 2px; }
.esc-sig-creds { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.esc-sig-cred {
  display: inline-block; padding: 4px 11px;
  background: rgba(78,205,196,0.08);
  border: 1px solid rgba(78,205,196,0.25);
  border-radius: 100px; font-size: 11.5px;
  font-weight: 500; color: #4ECDC4; line-height: 1.4;
}
.esc-sig-link { display: inline-flex; align-items: center; gap: 8px; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; color: var(--esc-primary); letter-spacing: -0.005em; text-decoration: none; padding: 10px 18px; background: rgba(78,205,196,0.08); border: 1px solid rgba(78,205,196,0.25); border-radius: 100px; transition: background 0.3s ease, transform 0.3s ease, gap 0.3s ease; }
.esc-sig-link:hover { background: rgba(78,205,196,0.15); transform: translateY(-1px); gap: 12px; }
@media (max-width: 760px) {
  .esc-signature { flex-direction: column; text-align: center; gap: 24px; padding: 32px 24px; margin: 48px auto 24px; }
  .esc-sig-kicker { justify-content: center; }
  .esc-sig-kicker::before { display: none; }
  .esc-sig-name { font-size: 26px !important; }
  .esc-sig-bio { font-size: 13.5px; text-align: left; }
  .esc-sig-photo-wrap, .esc-sig-photo { width: 160px; height: 160px; }
}
.esc-restart-row { text-align: center; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--esc-border); }
.esc-restart-btn { color: var(--esc-text-muted); font-size: 14px; text-decoration: underline; text-underline-offset: 4px; }
.esc-restart-btn:hover { color: var(--esc-primary-soft); }
@media (max-width: 600px) {
  .esc-step { padding: 32px 0; }
  .esc-score-card { padding: 40px 24px; }
  .esc-score-gauge { width: 220px; height: 220px; }
  .esc-score-number { font-size: 72px; }
  .esc-cats-grid { grid-template-columns: 1fr; }
}
/* PDF TEMPLATE v5 - 3 paginas, espacamento RESPIRADO */
#esc-pdf-template, #esc-pdf-template * {
  box-sizing: border-box !important;
  font-family: 'Inter', sans-serif;
}
#esc-pdf-template {
  background: #ffffff !important; color: #1a1f2e !important;
  width: 794px !important; font-size: 14px; line-height: 1.55;
}
.pdftpl-page {
  width: 794px !important; min-height: 1123px !important;
  padding: 60px 62px 90px 62px !important;
  background: #ffffff !important; position: relative !important;
}
#esc-pdf-template h1, #esc-pdf-template h2,
#esc-pdf-template h3, #esc-pdf-template h4,
#esc-pdf-template p, #esc-pdf-template div {
  margin: 0;
}
#esc-pdf-template h1, #esc-pdf-template h2 {
  font-family: 'Outfit', sans-serif !important;
  color: #0a1220 !important; letter-spacing: -0.02em;
  line-height: 1.2; font-weight: 700;
}
#esc-pdf-template strong { font-weight: 600; color: #0a1220; }
#esc-pdf-template img { display: block; max-width: 100%; }
.pdftpl-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 30px !important;
}
.pdftpl-logo { height: 36px; width: auto; }
.pdftpl-date {
  font-family: 'Inter', sans-serif; font-size: 11px;
  color: #9ca3af; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 600;
}
.pdftpl-divider {
  height: 1px; background: #e5e7eb; margin-bottom: 56px !important;
}
.pdftpl-hero { text-align: center; margin-bottom: 28px; }
.pdftpl-hero-eyebrow {
  display: inline-block; padding: 7px 16px; margin-bottom: 18px;
  background: rgba(0,200,150,0.1); border: 1px solid rgba(0,200,150,0.3);
  border-radius: 100px; font-family: 'Outfit', sans-serif !important;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: #00C896;
}
.pdftpl-hero-title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 30px !important; font-weight: 700 !important;
  color: #0a1220 !important; line-height: 1.15 !important;
  letter-spacing: -0.025em !important; margin-bottom: 10px !important;
}
.pdftpl-hero-title span { color: #00C896; }
.pdftpl-hero-sub {
  font-size: 12px; color: #6b7280; line-height: 1.55;
  max-width: 580px; margin: 0 auto !important;
}
.pdftpl-screens-wrap {
  display: flex; gap: 16px; align-items: flex-end;
  padding: 18px; background: #f7f9fb;
  border: 1px solid #e5e9ef; border-radius: 14px;
  margin-bottom: 22px !important;
}
.pdftpl-screen-desktop {
  flex: 1.7; background: #1a1f2e; border-radius: 10px;
  padding: 8px 8px 6px; position: relative;
}
.pdftpl-screen-bar {
  display: flex; gap: 5px; align-items: center;
  padding: 4px 6px 8px;
}
.pdftpl-dot {
  width: 9px; height: 9px; border-radius: 50%;
  display: inline-block;
}
.pdftpl-dot-red { background: #ff5f57; }
.pdftpl-dot-yellow { background: #ffbd2e; }
.pdftpl-dot-green { background: #28ca42; }
.pdftpl-urlbar {
  flex: 1; background: #0a0e12; border-radius: 4px;
  height: 14px; margin-left: 8px;
  font-family: monospace; font-size: 9px; color: #6b7280;
  display: flex; align-items: center; padding: 0 8px;
}
.pdftpl-screen-img-wrap {
  position: relative; border-radius: 5px; overflow: hidden;
  background: #0a0e12;
}
.pdftpl-screen-img {
  width: 100%; height: auto; display: block;
  min-height: 200px; object-fit: cover; object-position: top;
}
.pdftpl-screen-img-wrap-mobile .pdftpl-screen-img {
  min-height: 250px;
}
.pdftpl-screen-badge {
  position: absolute; top: 8px; right: 10px;
  padding: 3px 8px; background: rgba(0,200,150,0.9);
  color: white; border-radius: 4px;
  font-family: 'Outfit', sans-serif !important;
  font-size: 9px; font-weight: 700; letter-spacing: 0.1em;
}
.pdftpl-screen-mobile {
  flex: 0 0 130px; background: #1a1f2e;
  border-radius: 12px; padding: 6px;
  position: relative;
}
.pdftpl-screen-badge-mobile {
  top: 12px; left: 50%; right: auto;
  transform: translateX(-50%);
}
.pdftpl-scores-3col {
  display: flex; gap: 14px; margin-bottom: 22px !important;
}
.pdftpl-score3-card {
  flex: 1; background: #f7f9fb; border: 1px solid #e5e9ef;
  border-radius: 14px; padding: 32px 14px 18px;
  text-align: center; position: relative;
}
.pdftpl-score3-card-dark {
  background: linear-gradient(135deg, #0a1220 0%, #15191e 100%);
  border-color: #0a1220;
}
.pdftpl-score3-head {
  position: absolute; top: 12px; left: 0; right: 0;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.pdftpl-score3-head span {
  font-family: 'Outfit', sans-serif !important;
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: #00C896;
}
.pdftpl-score3-head-dark span { color: #00C896; }
.pdftpl-score3-gauge {
  position: relative; width: 94px; height: 94px;
  margin: 0 auto 12px;
}
.pdftpl-score3-num-wrap {
  position: absolute; top: 0; left: 0;
  width: 94px; height: 94px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.pdftpl-score3-num {
  font-family: 'Outfit', sans-serif !important;
  font-size: 30px; font-weight: 700;
  color: #0a1220; line-height: 1;
  letter-spacing: -0.03em;
}
.pdftpl-score3-num-dark { color: #ffffff; }
.pdftpl-score3-of {
  font-size: 7px; color: #9ca3af;
  letter-spacing: 0.2em; font-weight: 600;
  margin-top: 4px;
}
.pdftpl-score3-of-dark { color: rgba(255,255,255,0.5); }
.pdftpl-pill {
  display: inline-block; padding: 5px 12px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif !important;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  line-height: 1;
}
.pdftpl-pill.is-strong { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.pdftpl-pill.is-mid { background: #cffafe; color: #155e75; border: 1px solid #a5f3fc; }
.pdftpl-pill.is-warn { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.pdftpl-pill.is-bad { background: #fed7aa; color: #9a3412; border: 1px solid #fdba74; }
.pdftpl-pill.is-crit { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.pdftpl-pill-dark {
  background: rgba(0,200,150,0.2);
  color: #00C896;
  border: 1px solid rgba(0,200,150,0.4);
}
.pdftpl-pill-dark.is-strong {
  background: rgba(34,197,94,0.22) !important;
  color: #6ee7b7 !important;
  border: 1px solid rgba(34,197,94,0.5) !important;
}
.pdftpl-pill-dark.is-mid {
  background: rgba(8,145,178,0.25) !important;
  color: #67e8f9 !important;
  border: 1px solid rgba(8,145,178,0.55) !important;
}
.pdftpl-pill-dark.is-warn {
  background: rgba(245,158,11,0.25) !important;
  color: #fcd34d !important;
  border: 1px solid rgba(245,158,11,0.5) !important;
}
.pdftpl-pill-dark.is-bad {
  background: rgba(234,88,12,0.25) !important;
  color: #fb923c !important;
  border: 1px solid rgba(234,88,12,0.5) !important;
}
.pdftpl-pill-dark.is-crit {
  background: rgba(239,68,68,0.25) !important;
  color: #fca5a5 !important;
  border: 1px solid rgba(239,68,68,0.55) !important;
}
.pdftpl-summary-block {
  background: linear-gradient(135deg, rgba(0,200,150,0.08) 0%, rgba(0,200,150,0.02) 100%);
  border: 1px solid rgba(0,200,150,0.3);
  border-radius: 14px; padding: 22px 28px;
}
.pdftpl-summary-eyebrow {
  font-family: 'Outfit', sans-serif !important;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #00C896; margin-bottom: 12px;
}
.pdftpl-summary-text {
  font-size: 15px; line-height: 1.55;
  color: #0a1220; margin-bottom: 14px;
}
.pdftpl-summary-text strong { color: #0a1220; font-weight: 700; }
.pdftpl-summary-cta {
  font-family: 'Outfit', sans-serif !important;
  font-size: 12px; font-weight: 600;
  color: #00C896; letter-spacing: 0.04em;
  padding-top: 12px; border-top: 1px solid rgba(0,200,150,0.2);
  display: flex; align-items: center; gap: 8px;
}
.pdftpl-summary-arrow {
  font-size: 16px; line-height: 1;
}
.pdftpl-gap-warn {
  background: #fffbeb; border: 1px solid #fde68a;
  border-left: 3px solid #f59e0b; border-radius: 8px;
  padding: 11px 16px; font-size: 11px;
  color: #92400e; line-height: 1.5;
}
.pdftpl-footer-page {
  position: absolute; bottom: 36px; left: 62px; right: 62px;
  padding-top: 16px; border-top: 1px solid #e5e7eb;
  display: flex; justify-content: space-between; align-items: center;
}
.pdftpl-footer-name {
  font-family: 'Outfit', sans-serif !important;
  font-size: 11px; font-weight: 600;
  color: #0a1220; letter-spacing: 0.06em;
}
.pdftpl-footer-name span { color: #9ca3af; font-weight: 400; }
.pdftpl-footer-num {
  font-size: 10px; color: #9ca3af; font-weight: 600;
}
.pdftpl-sec-head {
  font-family: 'Outfit', sans-serif !important;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #00C896; margin-top: 36px !important; margin-bottom: 18px !important;
}
.pdftpl-sec-head-top { margin-top: 6px !important; }
.pdftpl-sec-sub {
  font-size: 11px; color: #9ca3af;
  margin-top: -12px !important; margin-bottom: 18px !important;
}
.pdftpl-overview-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 16px; margin-bottom: 0;
}
.pdftpl-overview-card {
  background: #f7f9fb; border: 1px solid #e5e9ef;
  border-radius: 12px; padding: 18px 20px;
}
.pdftpl-ov-label {
  font-family: 'Outfit', sans-serif !important;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #9ca3af; margin-bottom: 10px;
}
.pdftpl-ov-value {
  font-family: 'Outfit', sans-serif !important;
  font-size: 22px; font-weight: 700;
  color: #0a1220; line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 6px;
}
.pdftpl-ov-meta {
  font-size: 11px; color: #6b7280;
  margin-bottom: 10px;
}
.pdftpl-ov-tag {
  display: inline-block; padding: 3px 9px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif !important;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.1em;
}
.pdftpl-ov-tag.is-good { background: #dcfce7; color: #166534; }
.pdftpl-ov-tag.is-warn { background: #fef3c7; color: #92400e; }
.pdftpl-ov-tag.is-bad { background: #fee2e2; color: #991b1b; }
.pdftpl-tech-grid {
  display: flex; gap: 16px; margin-bottom: 0;
}
.pdftpl-tech-card {
  flex: 1; background: #f7f9fb; border: 1px solid #e5e9ef;
  border-radius: 12px; padding: 18px 22px;
}
.pdftpl-tech-label {
  font-family: 'Outfit', sans-serif !important;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #00C896; margin-bottom: 12px;
}
.pdftpl-tech-value {
  font-family: 'Outfit', sans-serif !important;
  font-size: 18px; font-weight: 700;
  color: #0a1220; line-height: 1.25;
  margin-bottom: 10px;
}
.pdftpl-tech-meta {
  font-size: 12px; color: #4b5563;
  line-height: 1.55; margin-bottom: 4px;
}
.pdftpl-tech-meta strong { color: #0a1220; font-weight: 600; }
.pdftpl-tech-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 10px;
}
.pdftpl-tech-tag {
  display: inline-block; padding: 3px 10px;
  background: #ecfdf5; border: 1px solid #a7f3d0;
  border-radius: 100px; font-size: 10px;
  font-weight: 500; color: #065f46; line-height: 1.4;
}
.pdftpl-cats {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.pdftpl-cat-card {
  background: #f7f9fb; border: 1px solid #e5e9ef;
  border-radius: 10px; padding: 13px 14px;
}
.pdftpl-cat-top {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 9px;
}
.pdftpl-cat-icon {
  width: 22px; height: 22px;
  background: rgba(0,200,150,0.15); border-radius: 6px;
  color: #00C896; display: flex;
  align-items: center; justify-content: center;
}
.pdftpl-cat-val {
  font-family: 'Outfit', sans-serif !important;
  font-size: 17px; font-weight: 700;
  line-height: 1;
}
.pdftpl-cat-val.is-good { color: #15803d; }
.pdftpl-cat-val.is-mid { color: #b45309; }
.pdftpl-cat-val.is-bad { color: #b91c1c; }
.pdftpl-cat-val small {
  font-size: 9px; color: #9ca3af; font-weight: 400;
}
.pdftpl-cat-name {
  font-family: 'Outfit', sans-serif !important;
  font-size: 12px; color: #0a1220;
  font-weight: 700; margin-bottom: 3px;
  line-height: 1.25;
}
.pdftpl-cat-desc {
  font-size: 9.5px; color: #6b7280;
  margin-bottom: 9px; line-height: 1.4;
}
.pdftpl-cat-bar {
  width: 100%; height: 4px; background: #eef0f3;
  border-radius: 2px; overflow: hidden; margin-bottom: 8px;
}
.pdftpl-cat-bar-fill {
  height: 4px; border-radius: 2px;
}
.pdftpl-cat-bar-fill.is-good { background: #22c55e; }
.pdftpl-cat-bar-fill.is-mid { background: #f59e0b; }
.pdftpl-cat-bar-fill.is-bad { background: #ef4444; }
.pdftpl-cat-insight {
  font-size: 9.5px; color: #6b7280;
  padding-top: 7px; border-top: 1px solid #f0f2f5;
  margin-top: 3px; line-height: 1.4;
}
.pdftpl-cat-wide { grid-column: span 1; }
.pdftpl-p3plan-hero { margin-bottom: 22px !important; }
.pdftpl-p3plan-title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 28px !important; font-weight: 700 !important;
  color: #0a1220 !important; line-height: 1.1 !important;
  letter-spacing: -0.025em !important; margin-bottom: 12px !important;
}
.pdftpl-p3plan-sub {
  font-size: 12.5px; color: #4b5563; line-height: 1.55;
  max-width: 600px;
}
.pdftpl-prob-card {
  background: #ffffff; border: 1px solid #e5e9ef;
  border-left: 4px solid #f59e0b;
  border-radius: 10px; padding: 11px 16px;
  margin-bottom: 9px !important;
}
.pdftpl-prob-card-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 6px !important;
}
.pdftpl-prob-num-pill {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(0,200,150,0.15); color: #00C896;
  text-align: center;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700; font-size: 10px; line-height: 22px;
  flex-shrink: 0;
}
.pdftpl-prob-category {
  font-family: 'Outfit', sans-serif !important;
  font-size: 8.5px; font-weight: 700;
  color: #6b7280; letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 2px 7px; background: #f3f4f6;
  border-radius: 4px;
}
.pdftpl-prob-sev {
  margin-left: auto;
  font-family: 'Outfit', sans-serif !important;
  font-size: 8px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 2px 7px; border-radius: 4px;
}
.pdftpl-prob-sev.is-high { background: #fee2e2; color: #991b1b; }
.pdftpl-prob-sev.is-medium { background: #fef3c7; color: #92400e; }
.pdftpl-prob-sev.is-low { background: #dbeafe; color: #1e40af; }
.pdftpl-prob-card-title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 13px; font-weight: 700;
  color: #0a1220; margin-bottom: 4px !important;
  line-height: 1.3;
}
.pdftpl-prob-card-desc {
  font-size: 11px; color: #4b5563;
  line-height: 1.5; margin-bottom: 7px !important;
}
.pdftpl-prob-card-rec {
  font-size: 10.5px; color: #065f46;
  line-height: 1.5;
  padding: 6px 11px;
  background: rgba(0,200,150,0.06);
  border-left: 3px solid #00C896;
  border-radius: 4px;
}
.pdftpl-prob-rec-label {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700; color: #00C896;
  font-size: 9.5px; letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pdftpl-prob-extras-title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #6b7280; margin-top: 16px !important;
  margin-bottom: 10px !important;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}
.pdftpl-prob-extras-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
}
.pdftpl-prob-extra-item {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 10.5px; color: #4b5563; line-height: 1.4;
}
.pdftpl-prob-extra-dot {
  width: 5px; height: 5px; background: #f59e0b;
  border-radius: 50%; flex-shrink: 0;
  margin-top: 6px;
}
.pdftpl-prob-extra-title {
  flex: 1; color: #0a1220; font-weight: 500;
}
.pdftpl-prob-clean {
  background: #ecfdf5; border: 1px solid #a7f3d0;
  border-radius: 12px; padding: 28px;
  text-align: center;
}
.pdftpl-prob-clean-icon {
  font-size: 36px; color: #00C896;
  margin-bottom: 10px !important;
}
.pdftpl-prob-clean-title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 18px; font-weight: 700;
  color: #0a1220; margin-bottom: 8px !important;
}
.pdftpl-prob-clean-text {
  font-size: 13px; color: #4b5563; line-height: 1.5;
}
.pdftpl-p3-hero { margin-top: 0 !important; margin-bottom: 0 !important; }
.pdftpl-p3-eyebrow {
  font-family: 'Outfit', sans-serif !important;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: #00C896; margin-bottom: 16px !important;
}
.pdftpl-p3-title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 34px !important; font-weight: 700 !important;
  color: #0a1220 !important; line-height: 1.1 !important;
  letter-spacing: -0.025em !important; margin-bottom: 16px !important;
}
.pdftpl-p3-sub {
  font-size: 13px; color: #4b5563; line-height: 1.6;
  max-width: 580px;
}
.pdftpl-p3-sub strong { color: #0a1220; font-weight: 600; }
.pdftpl-method-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.pdftpl-method-step {
  background: #f7f9fb; border: 1px solid #e5e9ef;
  border-radius: 12px; padding: 18px 16px;
  position: relative;
}
.pdftpl-method-num {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #00C896 0%, #0891b2 100%);
  border-radius: 50%; color: white;
  font-family: 'Outfit', sans-serif !important;
  font-size: 18px; font-weight: 700;
  text-align: center; line-height: 38px;
  margin-bottom: 12px !important;
  box-shadow: 0 3px 10px rgba(0,200,150,0.25);
}
.pdftpl-method-title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 14px; font-weight: 700;
  color: #0a1220; margin-bottom: 6px !important;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.pdftpl-method-text {
  font-size: 11px; color: #4b5563;
  line-height: 1.55;
}
.pdftpl-comp-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4px 28px;
}
.pdftpl-comp-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 0; border-bottom: 1px solid #f0f2f5;
}
.pdftpl-comp-check {
  width: 22px; height: 22px; background: #00C896;
  border-radius: 50%; color: white;
  font-size: 12px; font-weight: 700;
  text-align: center; line-height: 22px;
  flex-shrink: 0; display: inline-block;
}
.pdftpl-comp-text {
  font-family: 'Outfit', sans-serif !important;
  font-size: 13.5px; font-weight: 500;
  color: #0a1220; line-height: 1.3;
}
.pdftpl-stats-grid {
  display: flex; background: #f7f9fb;
  border: 1px solid #e5e9ef; border-radius: 12px;
  margin-top: 32px !important;
  margin-bottom: 0 !important; overflow: hidden;
}
.pdftpl-stat-cell {
  flex: 1; padding: 20px 16px; text-align: center;
  border-right: 1px solid #e5e9ef;
}
.pdftpl-stat-cell:last-child { border-right: none; }
.pdftpl-stat-num {
  font-family: 'Outfit', sans-serif !important;
  font-size: 26px; font-weight: 700;
  color: #0a1220; line-height: 1;
  margin-bottom: 6px !important; letter-spacing: -0.02em;
}
.pdftpl-stat-num small {
  font-size: 16px; color: #00C896;
}
.pdftpl-stat-label {
  font-size: 10.5px; color: #4b5563;
  line-height: 1.4; font-weight: 500;
}
.pdftpl-contact-box {
  background: #ecfdf5; border: 1px solid #a7f3d0;
  border-radius: 12px; padding: 18px 24px; text-align: center;
  margin-top: 22px !important;
  margin-bottom: 22px !important;
}
.pdftpl-contact-msg {
  font-family: 'Outfit', sans-serif !important;
  font-size: 18px; font-weight: 700;
  color: #0a1220; margin-bottom: 14px; line-height: 1.2;
}
.pdftpl-contact-grid {
  display: flex; justify-content: center; gap: 48px;
}
.pdftpl-contact-cell { text-align: center; }
.pdftpl-contact-label {
  font-size: 9px; color: #4b5563;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 4px; font-weight: 600;
}
.pdftpl-contact-val {
  font-family: 'Outfit', sans-serif !important;
  font-size: 13px; font-weight: 700; color: #0a1220;
}
.pdftpl-lucas-mini {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 18px; background: #f7f9fb;
  border: 1px solid #e5e9ef; border-radius: 12px;
}
.pdftpl-lucas-mini-photo {
  width: 60px; height: 60px; flex-shrink: 0;
  border-radius: 50%; overflow: hidden;
  background: #d1fae5;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700; color: #065f46; font-size: 20px;
}
.pdftpl-lucas-mini-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.pdftpl-lucas-mini-text { flex: 1; min-width: 0; }
.pdftpl-lucas-mini-name {
  font-family: 'Outfit', sans-serif !important;
  font-size: 13px; font-weight: 700;
  color: #0a1220; margin-bottom: 3px !important;
}
.pdftpl-lucas-mini-name span {
  color: #9ca3af; font-weight: 500; font-size: 11px;
}
.pdftpl-lucas-mini-bio {
  font-size: 10.5px; color: #4b5563; line-height: 1.55;
  margin-bottom: 9px !important;
}
.pdftpl-lucas-mini-bio strong { color: #0a1220; font-weight: 600; }
.pdftpl-lucas-flags {
  display: inline-flex; gap: 3px; vertical-align: middle;
}
.pdftpl-lucas-flag {
  font-size: 11px; line-height: 1;
}
.pdftpl-lucas-creds {
  display: flex; flex-wrap: wrap; gap: 5px;
}
.pdftpl-lucas-cred {
  display: inline-block; padding: 2px 8px;
  background: rgba(0,200,150,0.08);
  border: 1px solid rgba(0,200,150,0.25);
  border-radius: 100px; font-size: 9px;
  font-weight: 500; color: #065f46; line-height: 1.4;
}

/* ============================================
   v1.5.0 — animações de resultado + CTA WhatsApp
   ============================================ */
@keyframes escShake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-7px); }
  20%, 40%, 60%, 80% { transform: translateX(7px); }
}
.esc-shake { animation: escShake .65s cubic-bezier(.36,.07,.19,.97) both; }

.esc-wa-card {
  background: linear-gradient(145deg, #0d2b23 0%, #123b2e 55%, #0a1f1a 100%);
  border: 1px solid rgba(37, 211, 102, 0.28);
  border-radius: 24px; padding: 48px 32px; margin: 48px 0;
  text-align: center; position: relative; overflow: hidden;
}
.esc-wa-card::before {
  content: ''; position: absolute; top: -40%; right: -15%;
  width: 60%; height: 130%;
  background: radial-gradient(closest-side, rgba(37, 211, 102, 0.16), transparent 70%);
  pointer-events: none;
}
.esc-wa-inner { position: relative; max-width: 560px; margin: 0 auto; }
.esc-wa-eyebrow {
  display: inline-block; font-size: 11px; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #25D366; margin-bottom: 14px;
}
.esc-wa-card h2 {
  font-family: 'Outfit', sans-serif !important;
  font-size: clamp(24px, 4vw, 34px) !important; font-weight: 700 !important;
  color: #f7f4ee !important; line-height: 1.18 !important; margin-bottom: 14px !important;
}
.esc-wa-card p {
  font-size: 15.5px; color: rgba(247, 244, 238, 0.75);
  line-height: 1.65; margin-bottom: 28px;
}
.esc-wa-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  background: #25D366; color: #06281a !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 17px; font-weight: 700; text-decoration: none !important;
  padding: 18px 36px; border-radius: 100px;
  box-shadow: 0 16px 40px -12px rgba(37, 211, 102, 0.55);
  transition: transform .18s ease, filter .18s ease;
}
.esc-wa-btn:hover { transform: translateY(-3px) scale(1.02); filter: brightness(1.08); color: #06281a !important; }
.esc-wa-btn svg { flex: none; }
.esc-wa-sub { display: block; margin-top: 16px; font-size: 12.5px; color: rgba(247, 244, 238, 0.5); }
@media (max-width: 600px) { .esc-wa-card { padding: 38px 20px; } .esc-wa-btn { font-size: 15px; padding: 16px 26px; width: 100%; } }
