/* =========================================
   PROCESS PAGE STYLES
========================================= */

/* Hero */
.page-hero {
  background:
    linear-gradient(135deg, rgba(225, 6, 0, 0.05), rgba(0, 0, 0, 0.02)),
    #ffffff;
  padding-top: 100px;
  padding-bottom: 80px;
}

.page-hero h1 {
  max-width: 800px;
  margin-bottom: 16px;
}

.page-hero .lead {
  max-width: 680px;
}

/* =============================
   PROCESS STEPS
============================= */
.process-main {
  background: #ffffff;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  margin-bottom: 60px;
  align-items: start;
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  width: 70px;
  height: 70px;
}

.step-content h2 {
  margin-bottom: 12px;
}

.step-content p {
  margin-bottom: 14px;
  max-width: 700px;
}

.step-content ul {
  padding-left: 20px;
}

.step-content ul li {
  margin-bottom: 6px;
  color: var(--color-muted);
}

/* =============================
   BENEFITS
============================= */
.process-benefits {
  background: linear-gradient(180deg, #fafafa, #ffffff);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.benefit-card {
  background: #fff;
  border: 1px solid #efefef;
  border-radius: 16px;
  padding: 26px 22px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.07);
}

.benefit-card h3 {
  margin-bottom: 10px;
}

/* =============================
   CTA
============================= */
.cta-banner-inner h2 {
  color: #ffffff;
  max-width: 650px;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 1000px) {
  .process-step {
    grid-template-columns: 1fr;
  }

  .step-number {
    margin-bottom: 10px;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .page-hero {
    padding-top: 70px;
    padding-bottom: 60px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}