:root {
  --workflow-bg-start: #f5f7fa;
  --workflow-bg-end: #e4edf5;
  --workflow-accent1: rgba(44, 111, 187, 0.1);
  --workflow-accent2: rgba(255, 107, 53,   0.1);
  --primary:   var(--primary);
  --secondary: var(--secondary);
  --accent:    var(--accent);
  --dark:      var(--dark);
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 15px 40px rgba(0, 0, 0, 0.15);
  --radius:    20px;
  --radius-sm: 2px;
  --transition: var(--transition);
}
.workflow__process {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 10vh;
  background: linear-gradient(135deg, var(--workflow-bg-start), var(--workflow-bg-end));
  color: var(--dark);
}
.workflow__process::before,
.workflow__process::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}
.workflow__process::before {
  inset: auto -100px  auto auto;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--workflow-accent1) 0%, transparent 70%);
}
.workflow__process::after {
  inset: auto auto -150px -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--workflow-accent2) 0%, transparent 70%);
}
.process-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 4rem;
}
.process-title {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.process-title::after {
  content: "";
  position: absolute;
  bottom: -10px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 4px;
  background: var(--accent);
  border-radius: var(--radius-sm);
}
.process-subtitle {
  max-width: 700px;
  margin: 0 auto;
  color: #4a5568;
}
.process-steps {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 2vh 0;
}
.step-card {
  position: relative;
  flex: 1;
  min-width: 300px; max-width: 350px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}
.step-card.active {
  transform: translateY(0);
  opacity: 1;
}
.step-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}
.step-header {
  display: flex;
  align-items: center;
  padding: 1.8rem 1.8rem 1.2rem;
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  color: #fff;
}
.step-icon {
  flex-shrink: 0;
  width: 60px; height: 60px;
  margin-right: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}
.step-number {
  opacity: .8;
  margin-bottom: .3rem;
}
.step-content {
  padding: 1.8rem;
}
.step-description {
  margin-bottom: 1.5rem;
  color: #4a5568;
}
.step-features {
  list-style: none;
  margin-bottom: 1.5rem;
  padding: 0;
}
.step-features li {
  position: relative;
  padding: .5rem 0 .5rem 1.8rem;
}
.step-features li::before {
  content: "✓";
  position: absolute;
  top: .5rem; left: 0;
  font-weight: bold;
  color: var(--accent);
}
.step-duration {
  display: inline-block;
  padding: .5rem 1rem;
  color: var(--accent);
  background: var(--workflow-accent2);
  border-radius: 50px;
}
.contact-info {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.contact-title {
  margin-bottom: 1rem;
  color: var(--secondary);
}
.contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: .7rem;
}
.contact-item i {
  font-size: 1.2rem;
  color: var(--accent);
}
.step-card:nth-child(1) .step-header { background: linear-gradient(120deg, #2c6fbb, #3a86ff); }
.step-card:nth-child(2) .step-header { background: linear-gradient(120deg, #4a7bd9, #5e8de6); }
.step-card:nth-child(3) .step-header { background: linear-gradient(120deg, #5e8de6, #7a9eeb); }
.step-card:nth-child(4) .step-header { background: linear-gradient(120deg, #7a9eeb, #95afee); }
.step-card:nth-child(5) .step-header { background: linear-gradient(120deg, #95afee, #b0c4f1); }
.floating-element {
  position: absolute;
  z-index: 0;
  opacity: .1;
  animation: float infinite ease-in-out;
}
.floating-element.circle {
  width: 100px; height: 100px;
  border: 8px solid var(--accent);
  top: 10%; left: 5%;
  animation-duration: 15s;
}
.floating-element.triangle {
  border: 50px solid transparent;
  border-bottom-color: var(--primary);
  width: 0; height: 0;
  bottom: 15%; right: 8%;
  animation-duration: 18s;
  animation-delay: 2s;
}
.floating-element.square {
  width: 80px; height: 80px;
  border: 6px solid var(--secondary);
  top: 30%; right: 10%;
  transform: rotate(25deg);
  animation-duration: 12s;
  animation-delay: 1s;
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(0); }
  50%    { transform: translateY(-20px) rotate(5deg); }
}
@media (max-width: 1024px) {
  .process-title    { font-size: 2.2rem; }
  .step-card        { min-width: 280px; max-width: 320px; }
}
@media (max-width: 768px) {
  .process-title     { font-size: 2rem; }
  .process-subtitle  { font-size: 1rem; }
  .step-card         { min-width: 100%; max-width: 100%; }
  .contact-details   { flex-direction: column; }
  .process-steps     {padding: 2vh; }
}
@media (max-width: 480px) {
  .process-title     { font-size: 1.6rem; padding: 1vh; }
  .process-subtitle  { font-size: .95rem; padding: 2vh; }
  .step-features li  { font-size: .9rem; }
  .step-duration     { font-size: .85rem; padding: .4rem .8rem; }
  .floating-element  { display: none; }
  .contact-item      { font-size: 1rem; }
}
