/* === PROCESS (адаптивный, только секция процесса) === */
:root {
  --primary: #1b5e30;
  --primary-dark: #134523;
  --primary-light: #eaf5ec;
  --accent: #2ecc71;
  --white: #ffffff;
  --bg-warm: #f2f7f3;
  --text: #1a2a1c;
  --text-secondary: #4a5b4d;
  --border: #dcebe0;
  --shadow-sm: 0 4px 10px rgba(20, 70, 30, 0.06);
  --shadow-md: 0 12px 28px rgba(20, 70, 30, 0.1);
  --shadow-lg: 0 20px 40px rgba(20, 70, 30, 0.12);
  --radius: 20px;
  --radius-lg: 28px;
  --transition: all 0.25s ease;
}

/* PROCESS */
.process-section {
  background: linear-gradient(180deg, #e6faf1 0%, #c8f0dd 100%);
  padding: 5rem 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.step {
  text-align: center;
  padding: 2rem 1.2rem;
  border-radius: var(--radius);
  background: #86efb2;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-num {
  width: 52px;
  height: 52px;
  background: #65b386;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 1.2rem;
  box-shadow: 0 4px 14px rgba(27, 94, 48, 0.3);
}

.step h3 {
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
}

.step p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ========= АДАПТИВНОСТЬ PROCESS ========= */

/* Планшеты (до 1024px) */
@media (max-width: 1024px) {
  .process-section {
    padding: 4rem 0;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.3rem;
    padding: 0 2rem;
  }

  .step {
    padding: 1.8rem 1.2rem;
  }

  .step-num {
    width: 48px;
    height: 48px;
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .step h3 {
    font-size: 1rem;
  }

  .step p {
    font-size: 0.85rem;
  }
}

/* Планшеты (до 900px) */
@media (max-width: 900px) {
  .process-section {
    padding: 3.5rem 0;
  }

  .process-steps {
    gap: 1.2rem;
    padding: 0 1.5rem;
  }

  .step {
    padding: 1.6rem 1rem;
  }

  .step-num {
    width: 45px;
    height: 45px;
    font-size: 0.95rem;
  }

  .step h3 {
    font-size: 0.95rem;
  }

  .step p {
    font-size: 0.82rem;
  }
}

/* Смартфоны (до 768px) */
@media (max-width: 768px) {
  .process-section {
    padding: 3rem 0;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 1.2rem;
  }

  .step {
    padding: 1.5rem 1rem;
    border-radius: var(--radius);
  }

  .step-num {
    width: 42px;
    height: 42px;
    font-size: 0.9rem;
    margin-bottom: 0.9rem;
  }

  .step h3 {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }

  .step p {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

/* Смартфоны (до 600px) */
@media (max-width: 600px) {
  .process-section {
    padding: 2.5rem 0;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
    padding: 0 1rem;
  }

  .step {
    padding: 1.3rem 0.8rem;
  }

  .step-num {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    box-shadow: 0 3px 10px rgba(27, 94, 48, 0.25);
  }

  .step h3 {
    font-size: 0.85rem;
  }

  .step p {
    font-size: 0.78rem;
    line-height: 1.5;
  }
}

/* Маленькие смартфоны (до 480px) */
@media (max-width: 480px) {
  .process-section {
    padding: 2rem 0;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 0 0.8rem;
    max-width: 400px;
  }

  .step {
    padding: 1.3rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
  }

  .step-num {
    width: 42px;
    height: 42px;
    font-size: 0.9rem;
    margin: 0;
    flex-shrink: 0;
  }

  .step-content {
    flex: 1;
  }

  .step h3 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
  }

  .step p {
    font-size: 0.78rem;
  }
}

/* Очень маленькие устройства (до 380px) */
@media (max-width: 380px) {
  .process-section {
    padding: 1.8rem 0;
  }

  .process-steps {
    gap: 0.7rem;
    padding: 0 0.6rem;
  }

  .step {
    padding: 1.1rem 0.8rem;
    gap: 0.8rem;
  }

  .step-num {
    width: 38px;
    height: 38px;
    font-size: 0.8rem;
  }

  .step h3 {
    font-size: 0.82rem;
  }

  .step p {
    font-size: 0.74rem;
  }
}