/* шапка категории (бухгалтерия). Перенесено из инлайна шаблона buhgalter.ftp.md. */

.service-hero {
    background:
      radial-gradient(circle at 10% 18%, rgba(0, 82, 166, 0.08), transparent 36%),
      radial-gradient(circle at 90% 12%, rgba(57, 166, 213, 0.08), transparent 30%),
      linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
    color: var(--title-color);
    padding: 36px 0 32px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(12, 40, 88, 0.08);
  }

  .service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
    pointer-events: none;
  }

  .service-hero .container {
    position: relative;
    z-index: 1;
    max-width: 980px;
  }

  .service-hero-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--title-color);
    letter-spacing: -0.02em;
    line-height: 1.12;
  }

  .service-hero-description {
    font-size: 1.06rem;
    max-width: 820px;
    margin: 0 auto 20px;
    line-height: 1.75;
    font-weight: 400;
    color: rgba(12, 40, 88, 0.82);
  }

  .service-hero-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--theme-color) 0%, #006bc9 100%);
    color: #ffffff;
    border: 1px solid rgba(0, 82, 166, 0.25);
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 24px rgba(0, 82, 166, 0.24);
    cursor: pointer;
  }

  .service-hero-btn:hover {
    background: linear-gradient(135deg, #006bc9 0%, var(--theme-color) 100%);
    color: #ffffff;
    border-color: rgba(0, 82, 166, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 82, 166, 0.28);
  }

  .service-hero-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
  }

  .service-hero-btn:hover i {
    transform: translateX(4px);
  }

  @media (max-width: 768px) {
    .service-hero {
      padding: 44px 0 36px;
    }

    .service-hero-title {
      font-size: 2rem;
    }

    .service-hero-description {
      font-size: 1rem;
      margin-bottom: 24px;
    }
  }

  @media (max-width: 576px) {
    .service-hero {
      padding: 34px 0 26px;
    }

    .service-hero-title {
      font-size: 1.8rem;
    }

    .service-hero-description {
      font-size: 0.95rem;
    }

    .service-hero-btn {
      padding: 12px 22px;
      font-size: 14px;
    }


  }

  @media (max-width:432px) {}

  /* Buttons wrapper */
  .make-it-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }

  .make-it-wrap .service-hero-btn {
    margin: 0;
  }
