.cta-section {
  position: relative;
  min-height: 100vh;
  background-color: var(--color-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 40px 60px;
  gap: 60px;
  overflow-x: hidden;
  overflow-y: visible;
  transform: translateZ(0);

  & .cta-glow-dot {
    width: 800px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.4;
    z-index: 0;
    animation: pulse 5s ease-in-out infinite;
  }

  & .cta-header {
    position: relative;
    z-index: var(--z-content);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;

    & .cta-title { color: var(--color-white); }
    & .cta-subtitle { color: var(--color-orange); }
  }

  & .cta-cards {
    position: relative;
    z-index: var(--z-content);
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;

    & .cta-card {
      position: relative;
      width: 360px;
      height: 260px;
      border-radius: var(--radius-lg);
      border: 1.5px solid rgba(255, 255, 255, 0.5);
      overflow: hidden;
      text-decoration: none;
      display: block;
      cursor: pointer;
      transition: transform var(--transition-medium), box-shadow var(--transition-medium),
                  border-color var(--transition-medium);

      &:hover {
        transform: scale(1.04);
        box-shadow: 0 24px 60px rgba(0,0,0,0.5);
        border-color: var(--color-white);

        & .cta-card-bg img { transform: scale(1.08); }
        & .cta-card-label { background: rgba(0,0,0,0.75); }
      }

      & .cta-card-bg {
        position: absolute;
        inset: 0;

        & img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          display: block;
          transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        &::after { display: none; }
      }

      & .cta-card-label {
        position: absolute;
        inset: -1px;
        padding: 20px 24px;
        z-index: 2;
        color: var(--color-white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: Arial, sans-serif;
        font-weight: 700;
        font-size: 30px;
        line-height: 34.5px;
        letter-spacing: 0px;
        text-align: center;
        transition: background var(--transition-medium);
        background: rgba(0,0,0,0.3);
      }
    }
  }
}
