/* Call to Action — Stay in our orbit */
.component--cta-home {
  --cta-coral: #ff3e60;
  --cta-ink: #000;
  --cta-fg: #fff;
  position: relative;
  background: #050505;
  color: var(--cta-fg);
  padding: 3.5vw 0 3.2vw;
  overflow: hidden;
}

/* Red / pink vertical light pillars (right side) */
.component--cta-home::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(58%, 720px);
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(255, 50, 80, 0.05) 8%,
      rgba(255, 62, 96, 0.45) 28%,
      rgba(200, 40, 90, 0.55) 48%,
      rgba(90, 60, 160, 0.4) 72%,
      rgba(40, 70, 180, 0.35) 88%,
      rgba(30, 50, 120, 0.15) 100%
    );
  -webkit-mask-image: repeating-linear-gradient(
    90deg,
    #000 0,
    #000 10px,
    transparent 10px,
    transparent 22px
  );
  mask-image: repeating-linear-gradient(
    90deg,
    #000 0,
    #000 10px,
    transparent 10px,
    transparent 22px
  );
  filter: blur(0.5px);
  pointer-events: none;
  opacity: 0.9;
  animation: cta-glow 8s ease-in-out infinite alternate;
}

.component--cta-home::after {
  content: "";
  position: absolute;
  top: -15%;
  right: -8%;
  width: 60%;
  height: 130%;
  background:
    radial-gradient(ellipse 40% 55% at 55% 45%, rgba(255, 62, 96, 0.5), transparent 70%),
    radial-gradient(ellipse 28% 40% at 85% 40%, rgba(70, 90, 200, 0.4), transparent 65%);
  filter: blur(48px);
  pointer-events: none;
  opacity: 0.8;
  animation: cta-shimmer 10s ease-in-out infinite alternate;
}

@keyframes cta-glow {
  from { opacity: 0.75; }
  to { opacity: 1; }
}

@keyframes cta-shimmer {
  from { transform: translateX(0) scale(1); opacity: 0.7; }
  to { transform: translateX(-3%) scale(1.04); opacity: 1; }
}

.cta-home {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.cta-home__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 40px;
  flex-wrap: wrap;
}

.cta-home__headline {
  margin: 0;
  font-family: var(--font-primary, Diagramm, sans-serif);
  font-size: clamp(42px, 6.2vw, 88px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.cta-home__call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 14px 28px 14px 28px;
  background: var(--cta-coral);
  color: var(--cta-ink);
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-primary, Diagramm, sans-serif);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 600;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
}

.cta-home__call:hover {
  transform: scale(1.04);
  background: #ff5574;
}

.cta-home__desc {
  margin: 1vw 0 0;
  max-width: 42ch;
  font-family: var(--font-secondary, "IBM Plex Sans", sans-serif);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.5;
  opacity: 0.72;
}

/* Service pages — stacked CTA (headline → text → button) */
.cta-home--stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 720px;
}

.cta-home--stack .cta-home__headline {
  margin: 0 0 18px;
}

.cta-home--stack .cta-home__desc {
  margin: 0 0 28px;
  max-width: 52ch;
  opacity: 0.78;
}

.cta-home--stack .cta-home__call {
  margin: 0;
}

@media (max-width: 900px) {
  .component--cta-home {
    padding: 10vw 0 9vw;
  }

  .component--cta-home::before,
  .component--cta-home::after {
    opacity: 0.55;
  }

  .cta-home__row {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .cta-home__desc {
    margin-top: 4vw;
  }
}
