/* ========================================
   Service Overview Section
   Component: robotic-claw-service-overview
   ======================================== */

/* Контейнер секции */
.service-overview__wrap {
  /* Базовые стили обёртки — при необходимости добавить */
}

/* Подпись "Service overview" */
.service-overview__label {
  /* Стили лейбла — при необходимости добавить */
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #666;
  margin-bottom: 8px;
}

/* Заголовок h2 */
.service-overview__title {
  /* Стили заголовка — при необходимости добавить */
  font-size: 1.75rem;
  font-weight: 600;
  color: #222;
  margin: 0 0 24px 0;
  line-height: 1.3;
}

/* Сетка с двумя колонками */
.service-overview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Колонка контента */
.service-overview__column {
  /* Стили колонки — при необходимости добавить */
}

/* Параграф с текстом */
.service-overview__text {
  margin-bottom: 14px;
  color: #444;
  line-height: 1.75;
  font-size: 1rem;
}

/* Убираем отступ у последнего параграфа в колонке */
.service-overview__column > .service-overview__text:last-child {
  margin-bottom: 0;
}

/* Выделение жирным внутри текста */
.service-overview__text strong {
  font-weight: 600;
  color: #222;
}

/* Ссылки в тексте */
.service-overview__link {
  color: var(--blue, #2563eb); /* Fallback-цвет, если переменная не определена */
  text-decoration: none;
  transition: color 0.2s ease;
}

.service-overview__link:hover,
.service-overview__link:focus {
  color: var(--blue-dark, #1d4ed8);
  text-decoration: underline;
}

/* Адаптив: на мобильных — одна колонка */
@media (max-width: 768px) {
  .service-overview__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* =========================================
   Robotic Claw Process Section Styles
   ========================================= */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
    :root {
      --ink: #0c0e14;
      --ink2: #1e2130;
      --muted: #5a5f72;
      --line: #dde1ea;
      --surface: #f4f5f8;
      --white: #ffffff;
      --accent: #d4400a;
      --blue: #1a4fa8;
      --max: 1140px;
      --font-head: 'Syne', sans-serif;
      --font-body: 'DM Sans', sans-serif;
      --r: 5px;
    }
 
    html { scroll-behavior: smooth; }
 
    body {
      font-family: var(--font-body);
      font-size: 15px;
      line-height: 1.7;
      color: var(--ink);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }
 
    .wrap {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 28px;
    }
 
    .sec {
      padding: 72px 0;
    }
 
    .label {
      display: inline-block;
      font-family: var(--font-head);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 10px;
    }
 
    .h2 {
      font-family: var(--font-head);
      font-size: clamp(22px, 3vw, 34px);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -.02em;
      margin-bottom: 14px;
      color: var(--ink);
    }
 
    .lead {
      font-size: 16px;
      color: var(--muted);
      max-width: 600px;
      line-height: 1.7;
      margin-bottom: 40px;
    }
 
    /* PROCESS GRID */
    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      background: var(--line);
      border-radius: var(--r);
      overflow: hidden;
    }
 
    .p-step {
      background: #fff;
      padding: 24px 20px;
    }
 
    .p-num {
      font-family: var(--font-head);
      font-size: 44px;
      font-weight: 800;
      line-height: 1;
      color: var(--line);
      letter-spacing: -.04em;
      margin-bottom: 14px;
    }
 
    .p-title {
      font-family: var(--font-head);
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .05em;
      color: var(--ink);
      margin-bottom: 8px;
    }
 
    .p-body {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.65;
    }
 
    .p-body strong {
      color: var(--ink);
      font-weight: 600;
    }
 
    .p-body a {
      color: var(--blue);
      text-decoration: none;
    }
 
    .p-body a:hover {
      text-decoration: underline;
    }
 
    .p-time {
      display: inline-block;
      margin-top: 12px;
      font-family: var(--font-head);
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .06em;
      color: var(--accent);
    }
 
    @media (max-width: 1000px) {
      .process-grid { grid-template-columns: 1fr 1fr; }
    }
 
    @media (max-width: 600px) {
      .process-grid { grid-template-columns: 1fr; }
    }
/* ========================================
   Deliverables Section
   Component: deliverables
   ======================================== */

/* Секция с серым фоном */
.deliverables__section {
  padding: 24px 0;
  background-color: #f8f9fa; /* Эквивалент sec--gray */
}

/* Контейнер-обёртка */
.deliverables__wrap {
  max-width: 1200px;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

/* Подпись раздела */
.deliverables__label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  margin-bottom: 8px;
}

/* Заголовок h2 */
.deliverables__heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px;
  line-height: 1.3;
}

/* Лид-абзац */
.deliverables__lead {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0 0 48px;
  max-width: 760px;
}

/* Сетка карточек */
.deliverables__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Карточка элемента */
.deliverables__card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.deliverables__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border-color: #d1d5db;
}

/* Иконка */
.deliverables__icon {
  width: 44px;
  height: 44px;
  background: #eff6ff; /* Светло-синий фон */
  color: var(--blue, #2563eb);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.deliverables__icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

/* Заголовок карточки */
.deliverables__card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 10px;
}

/* Текст карточки */
.deliverables__card-body {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.65;
  margin: 0;
}

.deliverables__card-body strong {
  font-weight: 600;
  color: #111827;
}

/* Адаптив: планшет */
@media (max-width: 1024px) {
  .deliverables__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Адаптив: мобильные */
@media (max-width: 640px) {
  .deliverables__section {
    padding: 28px 0;
  }
  
  .deliverables__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .deliverables__heading {
    font-size: 1.5rem;
  }
  
  .deliverables__lead {
    font-size: 1rem;
    margin-bottom: 32px;
  }
  
  .deliverables__card {
    padding: 24px;
  }
}

/* Поддержка тёмной темы */
@media (prefers-color-scheme: dark) {
  .deliverables__section {
    background-color: #111827;
  }
  
  .deliverables__label,
  .deliverables__lead {
    color: #9ca3af;
  }
  
  .deliverables__heading,
  .deliverables__card-title,
  .deliverables__card-body strong {
    color: #f9fafb;
  }
  
  .deliverables__card {
    background: #1f2937;
    border-color: #374151;
  }
  
  .deliverables__card-body {
    color: #d1d5db;
  }
  
  .deliverables__icon {
    background: #1e3a8a;
    color: #60a5fa;
  }
}

/* ========================================
   Why Choose Us Section
   Component: why-choose-us
   ======================================== */

/* Секция */
.why-choose-us__section {
  padding: 64px 0;
  background-color: #fff;
}

/* Контейнер-обёртка */
.why-choose-us__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* Двухколоночная сетка: текст + изображение */
.why-choose-us__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

/* Подпись раздела */
.why-choose-us__label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  margin-bottom: 8px;
}

/* Заголовок h2 */
.why-choose-us__heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 16px;
  line-height: 1.3;
}

/* Лид-абзац (вводный текст) */
.why-choose-us__lead {
  font-size: 0.9375rem; /* 15px */
  color: var(--muted, #6b7280);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* Список преимуществ */
.why-choose-us__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Элемент списка */
.why-choose-us__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

/* Декоративная точка перед пунктом */
.why-choose-us__dot {
  display: inline-flex;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 6px;
  background: var(--blue, #2563eb);
  border-radius: 50%;
}

/* Контейнер текста внутри пункта */
.why-choose-us__item-content {
  flex: 1;
  min-width: 0;
}

/* Заголовок пункта списка */
.why-choose-us__item-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 6px;
  line-height: 1.4;
}

/* Описание пункта списка */
.why-choose-us__item-body {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.65;
  margin: 0;
}

.why-choose-us__item-body strong {
  font-weight: 600;
  color: #111827;
}

/* Контейнер изображения */
.why-choose-us__image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #f9fafb;
  aspect-ratio: 4/3;
}

.why-choose-us__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.why-choose-us__image:hover img {
  transform: scale(1.02);
}

/* Адаптив: планшет */
@media (max-width: 1024px) {
  .why-choose-us__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .why-choose-us__image {
    order: -1; /* Изображение сверху на планшетах */
    aspect-ratio: 16/9;
  }
}

/* Адаптив: мобильные */
@media (max-width: 640px) {
  .why-choose-us__section {
    padding: 48px 0;
  }
  
  .why-choose-us__heading {
    font-size: 1.5rem;
  }
  
  .why-choose-us__lead {
    font-size: 0.9375rem;
    margin-bottom: 20px;
  }
  
  .why-choose-us__item {
    gap: 12px;
  }
  
  .why-choose-us__item-title {
    font-size: 0.9375rem;
  }
  
  .why-choose-us__item-body {
    font-size: 0.875rem;
  }
}

/* Поддержка тёмной темы */
@media (prefers-color-scheme: dark) {
  .why-choose-us__section {
    background-color: #111827;
  }
  
  .why-choose-us__label,
  .why-choose-us__lead,
  .why-choose-us__item-body {
    color: #9ca3af;
  }
  
  .why-choose-us__heading,
  .why-choose-us__item-title,
  .why-choose-us__item-body strong {
    color: #f9fafb;
  }
  
  .why-choose-us__image {
    background: #1f2937;
  }
}