/* Horizontal Process Section */
.section-process-horizontal {
  background-color: transparent; /* Show the grid from the body */
  color: var(--color-text);
  padding: 100px 0 120px;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.process-main-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(3rem, 10vw, 8rem); /* Upgrade to massive typography */
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.05em;
  color: var(--color-text);
  text-transform: uppercase;
}

.process-sub-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-brand); /* Use brand red for the accent subtitle */
  text-transform: uppercase;
}

.process-horizontal-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* The connecting line - Removed as per user request */
.process-line {
  display: none;
}

.process-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 0 15px;
}

/* Layout for alternating items */
.process-item.item-top {
  justify-content: space-between;
}

.process-item.item-bottom {
  justify-content: space-between;
}

/* The big red circles */
.process-circle {
  width: 140px;
  height: 140px;
  background-color: var(--color-brand); /* Primary brand red */
  border-radius: 50%;
  position: relative;
  box-shadow: 0 10px 20px var(--color-brand-glow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  flex-shrink: 0;
}

.process-item:hover .process-circle {
  transform: scale(1.05);
  box-shadow: 0 15px 30px var(--color-brand-glow);
}

/* To ensure circles align with the middle line perfectly */
.item-top .process-circle {
  margin-top: 40px;
}

.item-bottom .process-circle {
  margin-bottom: 40px;
}

.process-content {
  text-align: left;
  max-width: 220px;
  margin: 0 auto;
}

.item-bottom .process-content {
  margin-top: 40px;
}

.item-top .process-content {
  margin-bottom: 40px;
}

.process-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.process-heading strong {
  font-size: 24px;
  font-weight: 800;
  color: #111;
}

.process-text {
  font-size: 13px;
  line-height: 1.6;
  color: #666;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .process-horizontal-container {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 40px;
  }
  
  .process-line {
    display: none;
  }
  
  .process-item {
    flex-direction: row !important;
    width: 100%;
    margin-bottom: 50px;
    align-items: center;
  }
  
  .item-top .process-circle,
  .item-bottom .process-circle {
    margin: 0 40px 0 0;
  }
  
  .item-top .process-content,
  .item-bottom .process-content {
    margin: 0;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .process-circle {
    width: 80px;
    height: 80px;
  }
  .process-line {
    display: none;
  }
}
