.hrprof-specialheading,
.hrprof-specialheading h1 {
    display: inline;
    color: #2b2b2b;
    font-size: 40px;
    font-family: 'Manrope',Arial,sans-serif;
    line-height: 1.2em;
    font-weight: 700;
}

.hrprof-specialheading h1 {
    color: rgb(193, 13, 13);
}

@media screen and (max-width: 479px) {
.hrprof-specialheading,
.hrprof-specialheading h1 {
    white-space: normal;
    font-size: 20px;
}
}


/*Стили для блока почему мы*/
    /* Главный контейнер */
    .v-tabs-section {
      font-family: 'Manrope', system-ui, -apple-system, sans-serif;
      padding: 100px 20px;
      box-sizing: border-box;
      color: #111;
    }

    .v-tabs-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 320px 1fr; 
      gap: 60px;
      align-items: start;
    }

    /* === ЛЕВАЯ КОЛОНКА (Заголовок + Навигация) === */
    .v-tabs-sidebar {
      display: flex;
      flex-direction: column;
    }

    .v-tabs-header {
      margin-bottom: 40px;
    }

    .v-tabs-header h2 {
      font-size: 2.5rem;
      font-weight: 800;
      margin: 0 0 10px 0;
      color: #111;
      text-transform: uppercase;
      letter-spacing: -0.02em;
    }

    .v-tabs-header p {
      font-size: 1.1rem;
      color: #555;
      margin: 0;
      line-height: 1.5;
    }

    .v-tabs-nav {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .v-tab-btn {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 18px 24px;
      background: transparent;
      border: none;
      border-left: 4px solid transparent; 
      border-radius: 0 12px 12px 0;
      cursor: pointer;
      font-family: inherit;
      font-size: 1.1rem;
      font-weight: 600;
      color: #666;
      transition: all 0.3s ease;
      text-align: left;
    }

    .v-tab-btn svg {
      width: 24px;
      height: 24px;
      stroke: #888;
      transition: stroke 0.3s ease;
      flex-shrink: 0;
    }

    .v-tab-btn:hover {
      background: rgba(0,0,0,0.03);
      color: #111;
    }

    /* Активная кнопка (Десктоп) */
    .v-tab-btn.active {
      background: #ffffff;
      border-left-color: #c10d0d; 
      color: #111;
      box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    }

    .v-tab-btn.active svg {
      stroke: #c10d0d;
    }

    /* === ПРАВАЯ КОЛОНКА (Контент) === */
    .v-tabs-content {
      background: #ffffff;
      border-radius: 24px;
      padding: 60px;
      box-shadow: 0 15px 50px rgba(0,0,0,0.04);
      min-height: 450px; 
      border: 1px solid rgba(0,0,0,0.02);
    }

    .v-tab-panel {
      display: none;
      animation: fadeUp 0.4s ease forwards;
    }

    .v-tab-panel.active {
      display: block;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(15px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Внутренности контента */
    .v-panel-header {
      display: flex;
      align-items: center;
      gap: 25px;
      margin-bottom: 30px;
      padding-bottom: 30px;
      border-bottom: 1px solid #f0f0f0;
    }

    .v-panel-icon {
      width: 80px;
      height: 80px;
      background: #fdf2f2; 
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .v-panel-icon svg {
      width: 40px;
      height: 40px;
      stroke: #c10d0d;
      stroke-width: 1.5;
    }

    .v-panel-title h3 {
      font-size: 2rem;
      font-weight: 800;
      color: #111;
      margin: 0;
      line-height: 1.2;
    }

    .v-panel-desc {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #444;
      margin: 0 0 40px 0;
    }

    .v-features-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
      gap: 20px;
    }

    .v-feature-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      font-size: 1.05rem;
      font-weight: 600;
      color: #222;
      line-height: 1.4;
    }

    .v-feature-item::before {
      content: "✓";
      display: flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      background: #c10d0d;
      color: #fff;
      border-radius: 50%;
      font-size: 12px;
      font-weight: bold;
      flex-shrink: 0;
      margin-top: 2px;
    }

    /* === ОБНОВЛЕННАЯ АДАПТИВНОСТЬ === */
    
    /* Для планшетов (переводим в одну колонку) */
    @media (max-width: 992px) {
      .v-tabs-section { padding: 60px 20px; }
      
      .v-tabs-container {
        grid-template-columns: 1fr; 
        gap: 30px;
      }
      
      .v-tabs-sidebar {
        text-align: center;
        align-items: center;
      }

      /* Кнопки выстраиваются в сетку плитками */
      .v-tabs-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        width: 100%;
      }

      .v-tab-btn {
        border-left: none;
        border: 2px solid transparent;
        border-radius: 12px;
        padding: 14px 20px;
        background: #fff;
        justify-content: center;
        flex: 1 1 calc(50% - 10px); /* По 2 кнопки в ряд на планшете */
        box-shadow: 0 2px 10px rgba(0,0,0,0.03);
      }

      /* Активная кнопка на мобилках/планшетах обводится рамкой */
      .v-tab-btn.active {
        border-color: #c10d0d;
        background: #fdf2f2; /* Легкая красная подсветка фона */
        box-shadow: none;
      }
    }

    /* Для мобильных телефонов */
    @media (max-width: 768px) {
      .v-tabs-section { padding: 40px 15px; }
      .v-tabs-header h2 { font-size: 2rem; }
      
      /* Карточка контента на смартфонах */
      .v-tabs-content { 
        padding: 30px 20px; 
        min-height: auto; 
        border-radius: 16px; 
      }
      
      /* Кнопки на телефонах становятся в один столбик друг под другом */
      .v-tab-btn {
        flex: 1 1 100%; 
        font-size: 1rem;
        padding: 12px 15px;
      }
      
      .v-panel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
        padding-bottom: 20px;
      }
      
      .v-panel-icon { width: 60px; height: 60px; border-radius: 16px; }
      .v-panel-icon svg { width: 30px; height: 30px; }
      .v-panel-title h3 { font-size: 1.5rem; }
      .v-panel-desc { font-size: 1rem; margin-bottom: 25px; }
      .v-features-list { grid-template-columns: 1fr; }
    }
/*Конец стилей для блока почему мы*/

    /*Стили нового h1*/
    .heading-tag {
        background: #d6d6d6;
        padding: 10px 20px;
        border-radius: 35px;
    }


/*Блок болей*/

    /* Базовые настройки секции */
    .hr-swiss-section {
      font-family: 'Manrope', sans-serif;
      padding: 100px 20px;
      color: #111111;
      box-sizing: border-box;
    }

    .hr-swiss-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Заголовок блока (опционально, можно убрать, если не нужен) */
    .hr-swiss-header {
      margin-bottom: 60px;
    }

    /* Сетка швейцарского стиля: линии и колонки */
    .hr-swiss-list {
      display: flex;
      flex-direction: column;
      border-top: 4px solid #c10d0d; /* Мощная брендовая линия сверху */
    }

    /* Строка с контентом */
    .hr-swiss-row {
      display: grid;
      grid-template-columns: 80px 1fr 1fr; /* Три колонки: Номер, Проблема, Решение */
      gap: 60px;
      padding: 50px 0;
      border-bottom: 1px solid #e0e0e0; /* Тонкая линия между блоками */
    }

    /* Последняя строка имеет толстую линию снизу для завершенности блока */
    .hr-swiss-row:last-child {
      border-bottom: 4px solid #c10d0d;
    }

    /* Крупная акцентная цифра */
    .hr-swiss-num {
      font-size: 3.5rem;
      font-weight: 800;
      color: #c10d0d;
      line-height: 0.8;
      margin: 0;
    }

    /* Текст проблемы */
    .hr-swiss-problem {
      font-size: 1.5rem;
      font-weight: 700;
      line-height: 1.3;
      margin: 0;
      color: #000000;
    }

    /* Текст решения */
    .hr-swiss-solution {
      font-size: 1.125rem;
      line-height: 1.6;
      color: #444444;
      margin: 0;
    }

    /* Подвал с кнопкой */
    .hr-swiss-footer {
      display: flex;
      justify-content: flex-end;
      margin-top: 40px;
    }

    /* Строгая статичная кнопка */
    .hr-swiss-btn {
        border-radius: 30px;
        background: #c10d0d;
        color: white;
        padding: 20px 40px;
        font-weight: 700;
        box-shadow: 0px 4px 0px 0px #7d0f0f;
    }

    .hr-main-title {
        font-size: 40px;
        margin: 3rem 0rem;
        }

    .hr-swiss-solution-wrapper {
      display: flex;
      flex-direction: column;
    }
    
    .hr-swiss-solution-label {
      font-size: 0.85rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #c10d0d;
      margin-bottom: 12px;
    }

    @media (max-width: 768px) {
      .hr-swiss-solution-label {
        margin-top: 10px;
      }
    }
    /* Адаптивность для планшетов */
    @media (max-width: 992px) {
      .hr-swiss-row {
        gap: 30px;
        grid-template-columns: 60px 1fr 1fr;
      }
      .hr-swiss-num {
        font-size: 2.5rem;
      }
      .hr-swiss-problem {
        font-size: 1.3rem;
      }
    }

    /* Адаптивность для мобильных устройств */
    @media (max-width: 768px) {
      .hr-swiss-section {
        padding: 60px 20px;
      }
      .hr-swiss-row {
        grid-template-columns: 1fr; /* Контент выстраивается в одну колонку */
        gap: 20px;
        padding: 40px 0;
      }
      .hr-swiss-num {
        font-size: 2rem;
        margin-bottom: 10px;
      }
      .hr-swiss-solution {
        padding-left: 0;
        border-left: none;
        color: #555555;
      }
      .hr-swiss-footer {
        justify-content: center;
      }
      .hr-swiss-btn {
        width: 100%;
        text-align: center;
      }
    }
    
/*Конец блока болей*/



/*Блок с шагами*/

    /* Базовые стили секции */
    .step-process-section {
      font-family: 'Manrope', system-ui, -apple-system, sans-serif;
      padding: 80px 20px;
      background-color: #fcfcfc;
      color: #111;
      box-sizing: border-box;
    }

    .step-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Заголовок с декоративной линией */
    .step-header {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 60px;
    }

    .step-main-title {
      font-size: clamp(2rem, 4vw, 2.5rem);
      font-weight: 800;
      margin: 0;
    }

    .step-line {
      flex-grow: 1;
      max-width: 100px;
      height: 4px;
      background-color: #c10d0d;
      border-radius: 2px;
    }

    /* Сетка карточек на десктопе */
    .step-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      align-items: start;
    }

    /* Эффект "лесенки" для десктопа */
    @media (min-width: 769px) {
      .step-card:nth-child(2) {
        margin-top: 50px;
      }
      .step-card:nth-child(3) {
        margin-top: 100px;
      }
    }

    /* Дизайн самой карточки */
    .step-card {
      background: #ffffff;
      border-radius: 20px;
      padding: 40px 30px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(0,0,0,0.03);
      transition: box-shadow 0.3s ease;
    }

    .step-card:hover {
      box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    }

    /* Номер и иконка-плюс */
    .step-card-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 25px;
    }

    .step-number {
      font-size: 4.5rem;
      font-weight: 800;
      color: #c10d0d;
      line-height: 1;
      letter-spacing: -0.03em;
    }

    .step-title {
      font-size: 1.35rem;
      font-weight: 800;
      line-height: 1.3;
      margin: 0 0 20px 0;
      color: #1a1a1a;
    }

    /* === НОВЫЕ СТИЛИ ДЛЯ ЧИТАБЕЛЬНОСТИ ТЕКСТА === */
    .step-body {
      color: #444444;
    }

    .step-body p {
      font-size: 1.05rem;
      line-height: 1.5;
      margin: 0 0 15px 0;
      font-weight: 600; /* Вводное предложение делаем чуть плотнее */
      color: #222;
    }

    .step-body ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 12px; /* Расстояние между пунктами списка */
    }

    .step-body li {
      font-size: 0.95rem;
      line-height: 1.6;
      position: relative;
      padding-left: 20px; /* Место под кастомный маркер */
    }

    /* Кастомный красный маркер-точка */
    .step-body li::before {
      content: '•';
      position: absolute;
      left: 0;
      top: -1px;
      color: #c10d0d;
      font-size: 1.5rem;
      line-height: 1;
    }

    .step-body strong {
      color: #111;
      font-weight: 700;
    }
    /* =========================================== */

    /* Скрываем иконку на десктопе */
    .step-toggle-icon {
      display: none;
    }

    /* АДАПТИВ И АККОРДЕОН ДЛЯ МОБИЛЬНЫХ */
    @media (max-width: 768px) {
      .step-grid {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .step-card {
        padding: 25px 20px;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent; 
      }

      .step-number {
        font-size: 3rem;
      }

      .step-title {
        margin-bottom: 0;
      }

      /* Настройки аккордеона */
      .step-body {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
      }

      /* Состояние открытой карточки (увеличил max-height из-за списков) */
      .step-card.active .step-body {
        max-height: 1200px; 
        opacity: 1;
        margin-top: 20px;
      }

      /* Рисуем крестик/плюсик через CSS */
      .step-toggle-icon {
        display: block;
        width: 24px;
        height: 24px;
        position: relative;
      }
      
      .step-toggle-icon::before,
      .step-toggle-icon::after {
        content: '';
        position: absolute;
        background-color: #c10d0d;
        transition: transform 0.3s ease;
      }

      .step-toggle-icon::before {
        top: 11px;
        left: 0;
        width: 24px;
        height: 2px;
      }

      .step-toggle-icon::after {
        top: 0;
        left: 11px;
        width: 2px;
        height: 24px;
      }

      .step-card.active .step-toggle-icon::after {
        transform: rotate(90deg);
      }
    }
    
    
/*Конец блока с шагами*/
