/* ══════════════════════════════════════════════
   process.css — сторінка "Процес сертифікації"
══════════════════════════════════════════════ */

/* ── Загальні ── */
.proc-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.proc-section-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  color: #124651;
  margin: 0 0 10px;
  position: relative;
  padding-bottom: 14px;
}
.proc-section-title::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #42796c, #8dd9c6);
  border-radius: 2px;
}
.proc-section-sub {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #6a8a8d;
  margin: 0 0 48px;
}

/* Теги-бейджі */
.proc-tag {
  display: inline-flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.proc-tag--duration  { background: rgba(66,121,108,0.12); color: #2d6b5e; }
.proc-tag--action    { background: rgba(18,70,81,0.1);    color: #124651; }
.proc-tag--type      { background: rgba(93,44,52,0.1);    color: #5c2a32; }
.proc-tag--success   { background: rgba(26,122,122,0.15); color: #1a7a7a; }
.proc-tag--required  { background: #ffeaea; color: #c0392b; }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.proc-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.proc-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.proc-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(0,28,33,0.78) 0%, rgba(18,70,81,0.65) 55%, rgba(42,100,88,0.6) 100%);
}
.proc-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 110px 32px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.proc-hero__label {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0;
}
.proc-hero__title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 900;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.proc-hero__sub {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(14px, 1.8vw, 18px);
  color: rgba(255,255,255,0.78);
  margin: 0;
}

/* ══════════════════════════════════════════════
   ВСТУП
══════════════════════════════════════════════ */

.proc-intro {
  padding: 72px 0;
  background: #f4f8f8;
}

.proc-intro__inner::after {
  content: '';
  display: table;
  clear: both;
}

.proc-intro__stats {
  float: right;
  width: 45%;
  margin-left: 40px;
  margin-top: 100px; /* ← підбери під висоту свого заголовка */
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.proc-intro__label {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #7aa0a0;
  margin: 0 0 12px;
}

.proc-intro__heading {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  color: #124651;
  margin: 0 0 20px;
  line-height: 1.25;
}

.proc-intro__divider {
  height: 3px;
  border-radius: 2px;
  margin: 0 0 24px;
  background: linear-gradient(90deg, #2d6b5e, #8dd9c6);
}

.proc-intro__text p {
  font-family: "Philosopher", serif;
  font-size: 18px;
  line-height: 1.75;
  color: #4a6a6d;
  margin: 0 0 16px;
}
.proc-intro__text p:last-child { margin: 0; }

.proc-intro__stat {
  background: linear-gradient(135deg, rgba(26,122,122,0.07) 0%, rgba(66,121,108,0.04) 100%);
  border: 1px solid #e2eeee;
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: default;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.proc-intro__stat:hover {
  border-color: #b0d0d0;
  box-shadow: 0 4px 16px rgba(42,100,88,0.08);
}

.proc-intro__stat-num {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  min-width: 60px;
  flex-shrink: 0;
}
.proc-intro__stat--teal  .proc-intro__stat-num { color: #2d6b5e; }
.proc-intro__stat--blue  .proc-intro__stat-num { color: #185fa5; }
.proc-intro__stat--amber .proc-intro__stat-num { color: #854f0b; }

.proc-intro__stat-title {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #124651;
  margin: 0 0 4px;
}
.proc-intro__stat-sub {
  font-family: "Montserrat", sans-serif;
  font-size: 12.5px;
  color: #6a8a8d;
  margin: 0;
  line-height: 1.45;
}
/* ══════════════════════════════════════════════
   ОСНОВНА СЕКЦІЯ — КРОКИ (ТАЙМЛАЙН)
══════════════════════════════════════════════ */
.proc-main {
  background: #f4f8f8;
}

/* Горизонтальний таймлайн (десктоп) */
.proc-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}

/* Загальна горизонтальна лінія між кроками */
.proc-timeline::before {
  content: '';
  position: absolute;
  top: 36px; /* центр нумерного кола */
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 3px;
  background: linear-gradient(90deg, #42796c 0%, #8dd9c6 50%, #42796c 100%);
  z-index: 0;
}

.proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Верхня частина: номер + лінія-конектор */
.proc-step__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}

.proc-step__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d6b5e, #42796c);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(42,100,88,0.35);
  border: 4px solid #f4f8f8;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.proc-step__num--final {
  background: linear-gradient(135deg, #1a7a7a, #124651);
  box-shadow: 0 4px 20px rgba(26,122,122,0.4);
  width: 80px;
  height: 80px;
  font-size: 22px;
}

/* Тіло кроку — картка */
.proc-step__body {
  background: #fff;
  border-radius: 12px;
  padding: 20px 16px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border-top: 3px solid #42796c;
  width: calc(100% - 16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 0.25s, box-shadow 0.25s;
  min-height: 220px;
}
.proc-step__body:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(42,100,88,0.14);
}
.proc-step--last .proc-step__body {
  border-top-color: #1a7a7a;
  background: linear-gradient(145deg, #f0faf9 0%, #fff 100%);
}

.proc-step__icon {
  font-size: 32px;
  line-height: 1;
}
.proc-step__title {
  font-family: "Montserrat", sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  color: #124651;
  margin: 0;
  line-height: 1.3;
}
.proc-step__text {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  color: #5a7a7d;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.proc-step__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  margin-top: auto;
}








.proc-timeline-v {
  position: relative;
  padding-left: 56px;
}
.proc-timeline-v::before {
  content: '';
  position: absolute;
  top: 36px;
  bottom: 16px;
  left: 17px;
  width: 2px;
  background: linear-gradient(180deg, #42796c 0%, #8dd9c6 50%, #42796c 100%);
  border-radius: 2px;
}

.proc-step-v {
  position: relative;
  padding-bottom: 40px;
}
.proc-step-v:last-child { padding-bottom: 0; }

.proc-step-v__num {
  position: absolute;
  left: -56px;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d6b5e, #42796c);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #f4f8f8; /* колір фону секції */
  box-shadow: 0 2px 8px rgba(42, 100, 88, 0.3);
}
.proc-step-v--last .proc-step-v__num {
  background: linear-gradient(135deg, #1a7a7a, #124651);
}

.proc-step-v__icon {
  font-size: 20px;
  margin-right: 8px;
  vertical-align: -3px;
}
.proc-step-v__title {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #124651;
  margin: 0 0 8px 0;
  line-height: 1.3;
}
.proc-step-v__text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #5a7a7d;
  line-height: 1.75;
  margin: 0 0 10px 0;
}
.proc-step-v__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* теги (залишаються без змін) */
.proc-tag { font-size: 11px; font-weight: 700; border-radius: 20px; padding: 3px 10px; }
.proc-tag--duration { background: #e1f5ee; color: #0f6e56; }
.proc-tag--type     { background: #e6f1fb; color: #185fa5; }
.proc-tag--action   { background: #42796c; color: #fff; }
.proc-tag--info     { background: #eeedfe; color: #3c3489; }
.proc-tag--warning  { background: #faeeda; color: #854f0b; }




/* ══════════════════════════════════════════════
   ТЕРМІН ДІЇ
══════════════════════════════════════════════ */
.proc-validity {
  padding: 40px 0;
  background: #fff;
}
.proc-validity__card {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, rgba(26,122,122,0.07) 0%, rgba(66,121,108,0.04) 100%);
  border-radius: 12px;
  padding: 28px 36px;
  border: 1.5px solid rgba(26,122,122,0.2);
}
.proc-validity__icon {
  font-size: 48px;
  line-height: 1;
  flex-shrink: 0;
}
.proc-validity__title {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #124651;
  margin: 0 0 8px;
}
.proc-validity__text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #4a6a6d;
  line-height: 1.7;
  margin: 0;
}
.proc-validity__text strong { color: #124651; }

.proc-validity__card {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, rgba(26,122,122,0.07) 0%, rgba(66,121,108,0.04) 100%);
  border-radius: 12px;
  padding: 28px 36px;
  border: 1.5px solid rgba(26,122,122,0.2);
}

/* ── Фото сертифіката ── */
.proc-validity__img-wrap {
  flex-shrink: 0;
  width: 80px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(26,122,122,0.25);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.proc-validity__img {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Текст ── */
.proc-validity__body { flex: 1; min-width: 0; }
.proc-validity__title {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #124651;
  margin: 0 0 8px;
}
.proc-validity__text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #4a6a6d;
  line-height: 1.7;
  margin: 0;
}
.proc-validity__text strong { color: #124651; }

@media (max-width: 600px) {
  .proc-validity__card { flex-direction: column; align-items: flex-start; padding: 22px 20px; }
  .proc-validity__img-wrap { width: 60px; }
}

/* ══════════════════════════════════════════════
   НАГЛЯДОВІ АУДИТИ
══════════════════════════════════════════════ */
.proc-surveillance {
  padding: 80px 0;
  background: #f4f8f8;
}

.proc-surv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.proc-surv-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  display: flex;
  transition: box-shadow 0.25s, transform 0.25s;
}
.proc-surv-card:hover {
  box-shadow: 0 10px 32px rgba(42,100,88,0.13);
  transform: translateY(-3px);
}

.proc-surv-card__marker {
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  transform: rotate(180deg);
  width: 52px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #2d6b5e 0%, #42796c 100%);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 3px;
  padding: 20px 0;
}

.proc-surv-card__body {
  padding: 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.proc-surv-card__when {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a7a7a;
  margin: 0;
}

.proc-surv-card__title {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #124651;
  margin: 0;
}

.proc-surv-card__duration {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.proc-surv-card__text {
  font-family: "Montserrat", sans-serif;
  font-size: 13.5px;
  color: #4a6a6d;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.proc-surv-card__remote {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(18,70,81,0.05);
  border-radius: 8px;
  padding: 12px 14px;
  margin-top: 4px;
}
.proc-surv-card__remote svg {
  width: 18px;
  height: 18px;
  stroke: #1a7a7a;
  flex-shrink: 0;
  margin-top: 1px;
}
.proc-surv-card__remote span {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  color: #4a6a6d;
  line-height: 1.55;
}







.proc-surv-list {
  display: flex;
  flex-direction: column;
}

.proc-surv-item {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(66, 121, 108, 0.15);
}
.proc-surv-item:last-child {
  border-bottom: none;
}

.proc-surv-item__marker {
  flex-shrink: 0;
  width: 36px;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #42796c;
  padding-top: 2px;
  line-height: 1;
}

.proc-surv-item__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.proc-surv-item__when {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a7a7a;
  margin: 0;
}

.proc-surv-item__title {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #124651;
  margin: 0;
  line-height: 1.3;
}

.proc-surv-item__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.proc-surv-item__text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #4a6a6d;
  line-height: 1.75;
  margin: 0;
}

.proc-surv-item__remote {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 4px;
}
.proc-surv-item__remote svg {
  width: 16px;
  height: 16px;
  stroke: #1a7a7a;
  flex-shrink: 0;
  margin-top: 2px;
}
.proc-surv-item__remote span {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: #4a6a6d;
  line-height: 1.6;
}

.proc-tag--required { background: #42796c; color: #fff; }


/* ══════════════════════════════════════════════
   РЕСЕРТИФІКАЦІЯ
══════════════════════════════════════════════ */
.proc-recert {
  padding: 48px 0;
  border-top: 1px solid #dde9e9;
  background-color: #f4f8f8;
}

.proc-recert__inner {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.proc-recert__icon {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}

.proc-recert__title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: #124651;
  margin: 0 0 10px;
}

.proc-recert__text {
  font-family: "Philosopher", serif;
  font-size: 18px;
  color: #4a6a6d;
  line-height: 1.75;
  margin: 0 0 16px;
}

.proc-recert__steps {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.proc-recert__steps span {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #2d6b5e;
}

.proc-recert__arrow {
  color: #aac5c5;
  font-size: 13px;
}

/* ══════════════════════════════════════════════
   ПОВНИЙ ЦИКЛ — ЧАСОВА ВІС
══════════════════════════════════════════════ */
.proc-cycle {
  padding: 80px 0;
  padding-top: 30px;
  background: #f4f8f8;
}

.proc-cycle__timeline {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  margin-top: 16px;
}

.proc-cycle__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.proc-cycle__dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px currentColor;
  flex-shrink: 0;
}
.proc-cycle__item--cert   { color: #2d6b5e; }
.proc-cycle__item--surv1  { color: #1a7a7a; }
.proc-cycle__item--surv2  { color: #124651; }
.proc-cycle__item--recert { color: #5c2a32; }

.proc-cycle__dot { background: currentColor; box-shadow: 0 0 0 3px rgba(255,255,255,0.9), 0 0 0 5px currentColor; }

.proc-cycle__label {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #124651;
  text-align: center;
  white-space: nowrap;
}
.proc-cycle__sub {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #7a9a9d;
  text-align: center;
}

.proc-cycle__line {
  flex: 1;
  height: 4px;
  background: linear-gradient(90deg, #42796c, #8dd9c6);
  position: relative;
  min-width: 60px;
  margin-left: 15px;
  margin-right: 15px;
}
.proc-cycle__line--long { flex: 2; }

.proc-cycle__line-label {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #42796c;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════
   CTA
══════════════════════════════════════════════ */
.proc-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #2d6b5e 0%, #3a8a78 50%, #124651 100%);
}
.proc-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.proc-cta__label {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 8px;
}
.proc-cta__title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 10px;
}
.proc-cta__sub {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  margin: 0;
  max-width: 480px;
  line-height: 1.6;
}
.proc-cta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.proc-cta__btn {
  font-family: "Montserrat", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.2s, transform 0.18s, border-color 0.2s;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.proc-cta__btn:hover { transform: translateY(-2px); }
.proc-cta__btn--primary {
  background: #fff;
  color: #124651;
  border: 2px solid #fff;
}
.proc-cta__btn--primary:hover { background: #e8f4f2; }
.proc-cta__btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
}
.proc-cta__btn--outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

/* ══════════════════════════════════════════════
   АДАПТИВ
══════════════════════════════════════════════ */


@media (max-width: 900px) {
  .proc-intro__inner {
    display: flex;
    flex-direction: column;
  }
  .proc-surv-grid    { grid-template-columns: 1fr; }
  .proc-cycle__timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .proc-cycle__line, .proc-cycle__line--long {
    width: 4px;
    height: 48px;
    min-width: unset;
    flex: none;
    background: linear-gradient(180deg, #42796c, #8dd9c6);
    margin-left: 9px;
  }
  .proc-cycle__line-label {
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
    white-space: nowrap;
  }
  .proc-cycle__item { flex-direction: row; gap: 16px; }
  .proc-cycle__label, .proc-cycle__sub { text-align: left; }

  .proc-intro__stats {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-top: 0;
    order: 1;
    flex-direction: column;  /* ← блоки в ряд від 900 до 768 */
    flex-wrap: wrap;
  }

  .proc-intro__stat {
    flex: 1;
    min-width: 200px;
  }

  .proc-intro__text {
    order: 2;
  }

  .proc-intro__divider,
  .proc-intro__label,
  .proc-intro__heading {
    order: 0;
  }
}

@media (max-width: 768px) {
  .proc-wrap { padding: 0 20px; }
  .proc-intro, .proc-validity, .proc-recert { padding: 40px 0; }

  .proc-intro__stats {
    flex-direction: column; /* ← від 768 вниз — стовпчик */
    align-items: stretch;
  }

  .proc-recert__inner { flex-direction: column; padding: 28px 24px; }
  .proc-recert__icon  { font-size: 40px; }

  .proc-cta__inner { flex-direction: column; }
  .proc-cta__actions { width: 100%; }
  .proc-cta__btn { flex: 1; text-align: center; }
}

@media (max-width: 540px) {
  .proc-timeline { grid-template-columns: 1fr; }
  .proc-step { flex-direction: row; text-align: left; align-items: flex-start; gap: 16px; }
  .proc-step__head { flex-direction: column; align-items: center; width: auto; margin-bottom: 0; }
  .proc-step__body { width: auto; flex: 1; align-items: flex-start; text-align: left; }
  .proc-step__tags { justify-content: flex-start; }
  .proc-timeline::before { display: none; }
}

@media (max-width: 1100px) {
  .proc-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .proc-timeline::before { display: none; }
  .proc-step__connector  { display: none; }
}
/* 
@media (max-width: 900px) {
  .proc-intro__inner { grid-template-columns: 1fr; gap: 36px; }
  .proc-intro__stats  { flex-direction: row; flex-wrap: wrap; }
  .proc-intro__stat   { flex: 1; min-width: 200px; }
  .proc-surv-grid    { grid-template-columns: 1fr; }
  .proc-cycle__timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .proc-cycle__line, .proc-cycle__line--long {
    width: 4px;
    height: 48px;
    min-width: unset;
    flex: none;
    background: linear-gradient(180deg, #42796c, #8dd9c6);
    margin-left: 9px;
  }
  .proc-cycle__line-label {
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
    white-space: nowrap;
  }
  .proc-cycle__item { flex-direction: row; gap: 16px; }
  .proc-cycle__label, .proc-cycle__sub { text-align: left; }
} */

/* @media (max-width: 768px) {
  .sv-hero { min-height: 280px; }
  .sv-hero__content { padding: 90px 20px 50px; }
  .proc-hero { min-height: 280px; }
  .proc-hero__content { padding: 90px 20px 50px; }
  .proc-wrap { padding: 0 20px; }
  .proc-main, .proc-surveillance, .proc-cycle { padding: 56px 0; }
  .proc-intro, .proc-validity, .proc-recert  { padding: 40px 0; }

  .proc-timeline { grid-template-columns: 1fr 1fr; }
  .proc-step__body { min-height: unset; }

  .proc-recert__inner { flex-direction: column; padding: 28px 24px; }
  .proc-recert__icon  { font-size: 40px; }

  .proc-cta__inner { flex-direction: column; }
  .proc-cta__actions { width: 100%; }
  .proc-cta__btn { flex: 1; text-align: center; }

  .proc-intro__stats { flex-direction: column; align-items: stretch; }
}

@media (max-width: 540px) {
  .sv-hero__title   { font-size: 2.5rem; }
  .proc-timeline { grid-template-columns: 1fr; }
  .proc-step { flex-direction: row; text-align: left; align-items: flex-start; gap: 16px; }
  .proc-step__head { flex-direction: column; align-items: center; width: auto; margin-bottom: 0; }
  .proc-step__body { width: auto; flex: 1; align-items: flex-start; text-align: left; }
  .proc-step__tags { justify-content: flex-start; }
  .proc-timeline::before { display: none; }
} */

.sv-hero {
  position: relative;
  width: 100%;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sv-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.sv-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.sv-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(0,28,33,0.7) 0%, rgba(18,70,81,0.55) 60%, rgba(93,44,52,0.5) 100%);
}
.sv-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 100px 32px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.sv-hero__label {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.sv-hero__title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 900;
  color: #fff;
  margin: 0;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.sv-hero__sub {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(255,255,255,0.8);
  margin: 0;
}
