/* ===========================================================================
   SPOED PAGE — extra urgency styling
   =========================================================================== */

.top-bar-spoed {
  background: linear-gradient(90deg, #7F1D1D, #DC2626);
  animation: urgentBreath 4s ease-in-out infinite;
}

@keyframes urgentBreath {
  0%, 100% { background: linear-gradient(90deg, #7F1D1D, #DC2626); }
  50% { background: linear-gradient(90deg, #DC2626, #7F1D1D); }
}

.eyebrow-red {
  background: var(--red-100) !important;
  color: var(--red-600) !important;
}

/* ===========================================================================
   SPOED HERO
   =========================================================================== */
.spoed-hero {
  position: relative;
  min-height: 780px;
  padding: 80px 0 100px;
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: center;
}

.spoed-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.spoed-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  filter: saturate(0.85);
}

.spoed-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(220, 38, 38, 0.4), transparent 60%),
    linear-gradient(115deg, rgba(11, 20, 40, 0.95) 0%, rgba(11, 20, 40, 0.85) 50%, rgba(127, 29, 29, 0.7) 100%);
}

.spoed-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.spoed-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  background: rgba(220, 38, 38, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(239, 68, 68, 0.5);
  border-radius: 999px;
  margin-bottom: 28px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.status-indicator {
  width: 10px;
  height: 10px;
  background: #FFB74D;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 12px #FFB74D;
}

.spoed-h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5.5vw, 4.8rem);
  margin-bottom: 20px;
  line-height: 1;
}

.spoed-subline {
  display: block;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-family: var(--font-body);
  font-weight: 500;
  color: #FFB74D;
  margin-top: 12px;
  letter-spacing: -0.01em;
}

.spoed-lede {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 40px;
  max-width: 620px;
  line-height: 1.6;
}

.spoed-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 48px;
  max-width: 520px;
}

.btn-spoed-xl {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  background: linear-gradient(135deg, #EF4444, #B91C1C);
  color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(220, 38, 38, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: spoedPulse 2.5s ease-in-out infinite;
}

.btn-spoed-xl:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 16px 50px rgba(220, 38, 38, 0.6);
}

@keyframes spoedPulse {
  0%, 100% { box-shadow: 0 12px 40px rgba(220, 38, 38, 0.5); }
  50% { box-shadow: 0 12px 50px rgba(220, 38, 38, 0.75); }
}

.btn-spoed-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.btn-spoed-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}

.btn-spoed-text strong {
  font-size: 1.2rem;
  font-weight: 800;
}

.btn-spoed-text small {
  font-size: 0.82rem;
  opacity: 0.9;
  font-weight: 500;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(37, 211, 102, 0.15);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(37, 211, 102, 0.5);
  color: var(--white);
  border-radius: var(--radius-md);
  font-weight: 700;
  transition: background 0.2s;
}

.btn-whatsapp:hover { background: rgba(37, 211, 102, 0.3); }

.spoed-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.spoed-stat {
  text-align: left;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #FFB74D;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  line-height: 1.4;
}

/* ===========================================================================
   SITUATIONS
   =========================================================================== */
.spoed-when {
  padding: 100px 0;
  background: var(--cream);
}

.spoed-situations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.spoed-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--red-600);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

.spoed-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.spoed-card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.spoed-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.spoed-card p {
  color: var(--ink-500);
  font-size: 0.95rem;
}

/* ===========================================================================
   HOW IT WORKS
   =========================================================================== */
.spoed-how {
  padding: 100px 0;
  background: var(--white);
}

.spoed-flow {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.spoed-flow-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px;
  background: var(--blue-50);
  border-radius: var(--radius-lg);
  transition: transform 0.2s;
}

.spoed-flow-step:hover {
  transform: translateX(4px);
}

.flow-step-num {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--red-600), #B91C1C);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.35);
}

.flow-step-body h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.flow-step-body p {
  color: var(--ink-500);
  font-size: 0.95rem;
}

/* ===========================================================================
   BIG EMERGENCY CTA
   =========================================================================== */
.spoed-big-cta {
  padding: 100px 0;
  background: var(--ink-900);
  position: relative;
  overflow: hidden;
}

.big-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.big-cta-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.2), transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: bigPulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes bigPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.7; }
}

.big-cta-inner h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.big-cta-inner p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
}

.btn-mega {
  display: inline-block;
  padding: 24px 48px;
  background: linear-gradient(135deg, #EF4444, #B91C1C);
  color: var(--white);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 50px rgba(220, 38, 38, 0.6);
  transition: transform 0.2s;
  animation: spoedPulse 2s ease-in-out infinite;
}

.btn-mega:hover {
  transform: translateY(-3px) scale(1.02);
}

.big-cta-note {
  display: block;
  margin-top: 24px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 768px) {
  .spoed-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .spoed-flow-step { flex-direction: column; gap: 14px; padding: 22px; }
  .flow-step-num { width: 48px; height: 48px; font-size: 1.4rem; }
}
