/* PROCESS TIMELINE */
.process-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: rgba(29, 33, 80, .1);
}

.process-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--gold);
}

.process-step {
  position: relative;
  width: 100%;
  max-width: 600px;
  padding-bottom: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-dot {
  position: relative;
  margin-bottom: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gold);
  z-index: 2;
}

.process-step h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.process-step p {
  color: var(--gray);
  font-size: 15.5px;
  max-width: 520px;
  margin: 0 auto;
}

#process {
  padding-top: 10px;
}

#process .section-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#process .section-head p {
  margin-left: auto;
  margin-right: auto;
}

/* WHY CHOOSE US */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  background: transparent;
  padding: 10px 0;
}

.why-card {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: 3px solid var(--accent);
  border-radius: 8px;
  padding: 45px 30px;
  transition: all 0.4s var(--ease);
  box-shadow: 0 10px 30px rgba(29, 33, 80, 0.1);
}

.why-card:hover {
  border-color: var(--accent-light);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 20px 45px rgba(29, 33, 80, 0.2);
  transform: translateY(-8px);
}

.why-icon {
  width: 46px;
  height: 46px;
  color: var(--accent-light);
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
  color: var(--white);
}

.why-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14.5px;
  line-height: 1.7;
}

/* INDUSTRIES */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  border: none;
}

.industry-item {
  background: var(--card);
  border: 1px solid rgba(60, 103, 177, 0.08);
  padding: 34px 12px;
  text-align: center;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.4s var(--ease);
  box-shadow: 0 8px 25px rgba(29, 33, 80, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.industry-item svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
  transition: transform 0.4s var(--ease), color 0.4s var(--ease);
}

.industry-item span {
  display: block;
  font-size: 11px;
  color: var(--gray);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
}

.industry-item:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(60, 103, 177, 0.08);
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F8FC 100%);
}

.industry-item:hover svg {
  transform: scale(1.1);
  color: var(--accent-dark);
}

/* CERTIFICATES */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cert-card {
  border: 1px solid var(--card-border);
  padding: 40px 24px;
  text-align: center;
  background: var(--card);
  transition: .4s;
}

.cert-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
}

.cert-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 18px;
  color: var(--gold);
}

.cert-card h4 {
  font-size: 15px;
}