/* ── CTA SECTION ── */
.cta-section {
  background: transparent;
  min-height: 100vh;
  padding: 140px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 7;
}

.cta-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(245, 168, 0, 0.06) 0%, transparent 70%);
}

/* Flex container: text left, rocket right */
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  position: relative;
}

/* ── TEXT SIDE ── */
.cta-content { flex: 1 }

.cta-urgency {
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--a);
  font-weight: 500;
  margin-bottom: 24px;
  display: block;
  text-align: left;
}

.cta-section h2 {
  font-family: var(--ff-d);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.cta-section h2 em { font-style: normal; color: var(--a) }

.cta-section .lead {
  max-width: none;
  margin-bottom: 0;
}

/* Stagger delays */
.cta-urgency.reveal   { transition-delay: 0.00s }
.cta-section h2.reveal { transition-delay: 0.12s }
.cta-section .lead.reveal { transition-delay: 0.24s }
.cta-rocket-link.reveal   { transition-delay: 0.36s }

/* ── ROCKET LINK ── */
.cta-rocket-link {
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  flex-direction: column;
  gap: 24px;
}

/* ── ACTION BUTTON ── */
.cta-action-button {
  font-family: var(--ff-d);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 12px 28px;
  border: 2px solid var(--a);
  background: transparent;
  color: var(--a);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-action-button .icon-schedule-plus {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.cta-action-button:hover {
  background: var(--a);
  color: var(--bg);
  filter:
    drop-shadow(0 0 28px rgba(255, 255, 255, 0.55))
    drop-shadow(0 8px 32px rgba(245, 168, 0, 0.5));
  animation: button-glow 0.45s ease-in-out infinite;
}

@keyframes button-glow {
  0%   { transform: scale(1) }
  50%  { transform: scale(1.05) }
  100% { transform: scale(1) }
}

/* Ambient glow behind rocket */
.cta-rocket-link::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 168, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
  transition: background 0.3s ease;
}
.cta-rocket-link:hover::before {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}

.rocket-svg {
  width: 140px;
  height: auto;
  animation: float 3.5s ease-in-out infinite;
  filter: drop-shadow(0 8px 32px rgba(245, 168, 0, 0.28));
  position: relative;
  z-index: 1;
  transition: filter 0.25s ease;
}

.cta-rocket-link:hover .rocket-svg,
.cta-inner:has(.cta-action-button:hover) .rocket-svg {
  animation: rocket-ignite 0.45s ease-in-out infinite;
  filter:
    drop-shadow(0 0 28px rgba(255, 255, 255, 0.55))
    drop-shadow(0 8px 32px rgba(245, 168, 0, 0.5));
}

@keyframes float {
  0%,  100% { transform: translateY(0) }
  50%        { transform: translateY(-18px) }
}

@keyframes rocket-ignite {
  0%   { transform: translateY(-2px) rotate(-4deg) scale(1.1) }
  20%  { transform: translateY(-5px) rotate( 4deg) scale(1.1) }
  40%  { transform: translateY(-2px) rotate(-3deg) scale(1.1) }
  60%  { transform: translateY(-6px) rotate( 3deg) scale(1.1) }
  80%  { transform: translateY(-3px) rotate(-4deg) scale(1.1) }
  100% { transform: translateY(-5px) rotate( 2deg) scale(1.1) }
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
  .cta-content {
    display: contents;
  }
  .cta-urgency { order: 1; margin-bottom: -10px; text-align: center; width: 100%; }
  .cta-section h2 { order: 2; margin-bottom: 0; }
  .cta-section .lead { order: 3; margin-bottom: 0; max-width: 100%; }
  .cta-rocket-link { order: 4; margin: 16px 0; display: flex; justify-content: center; }
  .cta-action-button { 
    order: 5; 
    margin-top: 8px; 
    width: 100%; 
    justify-content: center; 
  }
}
@media (max-width: 600px) {
  .cta-section { padding: 100px 20px }
  .cta-inner { gap: 32px }
  .rocket-svg  { width: 100px }
}
