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

.proc-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(130, 94, 231, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

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

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

.proc-hero__subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 36px;
}

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

.proc-benefits__header {
  text-align: center;
  margin-bottom: 48px;
}

.proc-benefits__header .section-title {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.proc-benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.proc-benefit-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.proc-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.proc-benefit-card__icon {
  margin-bottom: 20px;
}

.proc-benefit-card__icon img {
  height: 56px;
  width: auto;
  margin: 0 auto;
}

.proc-benefit-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 12px;
}

.proc-benefit-card__text {
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.6;
}

/* ===========================
   Process Steps
   =========================== */
.proc-steps {
  padding: 80px 0;
  background: linear-gradient(180deg, #1C0944 0%, #0F0039 100%);
}

.proc-steps__header {
  text-align: center;
  margin-bottom: 56px;
}

.proc-steps__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.proc-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.proc-step__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #53389E 0%, #42307D 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.proc-step__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proc-step__icon img {
  height: 48px;
  width: auto;
}

.proc-step__content {
  flex: 1;
}

.proc-step__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.proc-step__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* ===========================
   CTA Section
   =========================== */
.proc-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #0F0039 0%, #100329 50%, #1a0a3e 100%);
  position: relative;
}

.proc-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(130, 94, 231, 0.08) 0%, transparent 70%);
}

.proc-cta .container {
  max-width: 1400px;
}

.proc-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.proc-cta__content {
  padding-top: 40px;
}

.proc-cta__content .section-subtitle {
  margin-bottom: 32px;
}

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

.proc-cta__booking .meetings-iframe-container {
  min-height: 680px;
  width: 100%;
}

.proc-cta__booking iframe {
  border-radius: 16px;
}

.proc-cta__benefits {
  text-align: left;
  display: inline-block;
  margin-bottom: 28px;
}

.proc-cta__benefits li {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
}

.proc-cta__benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: #825EE7;
  border-radius: 50%;
}

.proc-cta__benefits li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 50%;
  width: 8px;
  height: 5px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translateY(-60%) rotate(-45deg);
}

.proc-cta__closing {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  line-height: 1.6;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 992px) {
  .proc-hero__title {
    font-size: 2.75rem;
  }

  .proc-benefits__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .proc-cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .proc-cta__content {
    padding-top: 0;
  }

  .proc-cta__content .section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .proc-cta__benefits {
    display: inline-block;
    text-align: left;
  }
}

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

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

  .proc-benefits,
  .proc-steps {
    padding: 60px 0;
  }

  .proc-cta {
    padding: 60px 0;
  }

  .proc-step {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
  }

  .proc-step__icon {
    margin: 0 auto;
  }
}

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