.register {
  background: linear-gradient(
    180deg,
    #33f 0%,
    #442bd9 32.29%,
    #5524b2 68.23%,
    #641d91 100%
  );
  padding: 80px 0;
  position: relative;
  overflow: hidden;

  .register-section-title {
    font-family: var(--font-roobert);
    font-size: 54px;
    font-weight: 900;
    line-height: 63px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 60px;
    color: #ebfaff;
  }

  .register-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
  }

  .register-left {
    flex: 1;
    position: relative;

    .register-image {
      width: 100%;
      height: 400px;
      border-radius: 8px 0 0 8px;
      overflow: hidden;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
  }

  .register-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: stretch;

    .register-card {
      background: white;
      border-radius: 0 8px 8px 0;
      padding: 50px 40px 40px;
      width: 100%;
      height: 400px;
      margin: 0;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      flex-direction: column;
      justify-content: center;

      .card-title {
        color: #33f;
        font-family: var(--font-roobert);
        font-size: 34px;
        font-weight: 900;
        line-height: normal;
        letter-spacing: 1px;
        text-transform: uppercase;
      }

      .card-pricing {
        text-align: left;
        margin-bottom: 15px;

        .card-old-price {
          color: #b8babd;
          font-family: var(--font-roobert);
          font-size: 30px;
          font-weight: 900;
          line-height: 24px;
          text-decoration-line: line-through;
          text-transform: uppercase;
        }

        .card-new-price {
          color: #33f;
          font-family: var(--font-roobert);
          font-size: 30px;
          font-weight: 900;
          line-height: 24px;
          text-transform: uppercase;
        }
      }

      .card-details {
        margin-bottom: 30px;

        .card-detail-item {
          font-family: var(--font-helvetica-neue);
          font-size: 18px;
          font-weight: 500;
          line-height: 24px;
          margin-bottom: 10px;
          color: #1d0c50;

          &::before {
            content: "•";
            margin-right: 5px;
            color: #1d0c50;
            font-weight: bold;
          }

          &:last-child {
            margin-bottom: 0;
          }
        }
      }

      .register-button {
        font-size: 16px;
        width: 100%;
        text-align: center;
        max-width: 200px;
      }
    }
  }

  .audience-register-primary-button {
    font-family: var(--font-helvetica-neue);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.4px;
    display: inline-flex;
    align-items: center;
    border-radius: 6px;
    background: linear-gradient(90deg, #a346ff -8.48%, #f25e72 149.55%);
    width: 200px;
    justify-content: center;
    color: white;
    height: 3rem;
    padding: 0 1.5625rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;

    &:hover {
      opacity: 0.8;
    }
  }

  @media (max-width: 991px) {
    padding: 60px 0;

    .register-section-title {
      font-size: 32px;
      line-height: 36px;
      margin-bottom: 40px;
    }

    .register-content {
      flex-direction: column;
      gap: 0;
      max-width: 100%;
    }

    .register-left {
      flex: none;
      width: 100%;

      .register-image {
        height: 250px;
        border-radius: 8px 8px 0 0;
      }
    }

    .register-right {
      flex: none;
      width: 100%;

      .register-card {
        padding: 20px 20px 30px;
        margin: 0;
        border-radius: 0 0 8px 8px;
        height: auto;

        .card-title {
          font-size: 28px;
          text-align: center;
        }

        .card-pricing {
          text-align: center;

          .card-new-price {
            font-size: 28px;
          }
        }

        .card-details {
          .card-detail-item {
            font-size: 16px;
          }
        }

        .register-button {
          width: 100%;
          max-width: 100%;
        }
      }
    }
  }
}
