/* ===========================
   Case Study Landing Page - Hero
   =========================== */
.cslp-hero {
  padding: 200px 0 100px;
  background: linear-gradient(135deg, #100329 0%, #1C0944 50%, #0F0039 100%);
  position: relative;
  overflow: hidden;
}

.cslp-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(130, 94, 231, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.cslp-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cslp-hero__label {
  display: inline-block;
  background: linear-gradient(135deg, #825EE7 0%, #53389E 100%);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cslp-hero__title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 20px;
}

.cslp-hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 32px;
}

.cslp-hero__benefits {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cslp-hero__benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.cslp-hero__benefits li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: #825EE7;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

.cslp-hero__image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ===========================
   Form Section
   =========================== */
.cslp-form {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #0F0039 0%, #1C0944 100%);
}

.cslp-form__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.cslp-form__title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.cslp-form__subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cslp-form__embed {
  min-height: 400px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(130, 94, 231, 0.15);
}

.cslp-form__embed .meetings-iframe-container {
  min-height: 400px;
  width: 100%;
}

.cslp-form__embed iframe {
  border-radius: 16px;
}

/* ===========================
   Thank You Page
   =========================== */
.ty-hero {
  padding: 200px 0 160px;
  background: linear-gradient(135deg, #100329 0%, #1C0944 50%, #0F0039 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ty-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(130, 94, 231, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.ty-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.ty-hero__icon {
  font-size: 4rem;
  margin-bottom: 24px;
}

.ty-hero__title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
}

.ty-hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 992px) {
  .cslp-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cslp-hero__title {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  .cslp-hero {
    padding: 140px 0 70px;
  }

  .cslp-hero__title {
    font-size: 2rem;
  }

  .cslp-form {
    padding: 60px 0 80px;
  }

  .cslp-form__title {
    font-size: 1.6rem;
  }

  .ty-hero {
    padding: 140px 0 100px;
  }

  .ty-hero__title {
    font-size: 2.25rem;
  }
}

@media (max-width: 480px) {
  .cslp-hero__title {
    font-size: 1.75rem;
  }

  .ty-hero__title {
    font-size: 1.85rem;
  }
}
