.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.cta-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 2px solid #333;
  border-radius: 30px;
  padding: 50px 35px;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.heading-highlight {
  color: #9333ea;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #9333ea, #7c3aed);
}

.main-heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
  color: #fff;
}

.benefits-section {
  margin-bottom: 40px;
}

.section-label {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.benefit-item {
  font-size: 16px;
  color: #e0e0e0;
  line-height: 1.6;
  position: relative;
  padding-left: 30px;
  text-align: left;
}

.benefit-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #9333ea;
  font-weight: bold;
  font-size: 20px;
}

.requirements-section {
  margin-bottom: 40px;
}

.requirements-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.requirement-item {
  font-size: 16px;
  color: #e0e0e0;
  line-height: 1.6;
  position: relative;
  padding-left: 30px;
  text-align: left;
}

.requirement-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #9333ea;
  font-weight: bold;
  font-size: 24px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #9333ea, #7c3aed);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(25, 24, 25, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(25, 24, 25, 0.3);
}

.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #9333ea, #7c3aed);
  margin: 0 auto 30px;
  border-radius: 2px;
}

.calendly-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 2px solid #333;
  border-radius: 30px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.calendly-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #9333ea, #7c3aed);
}

.calendly-heading {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
}

.calendly-inline-widget {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(147, 51, 234, 0.2);
  flex-grow: 1;
}

@media (max-width: 1024px) {
  .grid-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 40px 25px;
    border-radius: 20px;
  }

  .calendly-section {
    padding: 30px 20px;
    border-radius: 20px;
    margin-top: 40px;
  }

  .main-heading {
    margin-bottom: 40px;
  }

  .benefit-item,
  .requirement-item {
    font-size: 16px;
  }

  .cta-button {
    font-size: 16px;
    padding: 16px 40px;
    width: 100%;
  }
}